Skip to content

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

A Python version is also available, with Windows support.

Clone this wiki locally