-
Notifications
You must be signed in to change notification settings - Fork 2
Git Tips
Max Bernstein edited this page Feb 20, 2014
·
4 revisions
Basically follow this: http://rogerdudler.github.io/git-guide/
ESSENTIAL: Only push to current branch
git config --global push.default current
ESSENTIAL: Set up rebasing (no Merge commits)
git config branch.autosetuprebase always
git config branch.master.rebase true
git config branch.dev.rebase true
OPTIONAL: Neat little prettifying tool
gem install git-up- See: https://github.com/aanand/git-up
A Python version is also available, with Windows support.
# pip install git-up- See: https://github.com/msiemens/PyGitUp