kde-extraapps/amarok/HACKING/git.txt
2015-01-31 00:30:50 +00:00

8 lines
404 B
Text

This command is mandatory for all amarok developers:
git config branch.master.rebase true
The result of this is that all "git pull" commands will do a rebase rather then a merge.
Your local commits will be rewritten (parented to origin/master). The prevents the log
to become unreadable because of all the merge commits.
Note: rebasing can be dangerous. Check before pushing if something looks fishy.