git: prevent merge commits with automatic rebase

revision 47a40bbf6c58e9571cf6bb1dace8dea6f51f8ef0

raw

config.sh

1
2
3
4
5
6
# all future branches
$ git config --global branch.autosetuprebase always
 
# current branch "develop"
$ git config branch.develop.rebase true
 

History