2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-08-22 14:06:19 +00:00
repo/core/kiss/post-install
2020-07-08 18:45:58 +03:00

18 lines
394 B
Bash
Executable File

#!/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