2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-08-27 16:26:18 +00:00
repo/core/kiss/post-install

18 lines
394 B
Plaintext
Raw Normal View History

2020-07-08 15:45:58 +00:00
#!/bin/sh
cat <<EOF
NOTE: Updates will now show a warning from Git about
the merge strategy. Simply set the desired merge strategy
and the warning will disappear.
Examples:
git config pull.rebase false # merge (the default strategy)
git config pull.rebase true # rebase
git config pull.ff only # fast-forward only
TIP: --global can be used to set this user-wide.
EOF