mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
8 lines
404 B
Text
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.
|