Skip to content

Instantly share code, notes, and snippets.

View karabulut's full-sized avatar

Yunus Emre Karabulut karabulut

View GitHub Profile
git branch <BRANCH>
git checkout <B2>
git merge <B1>
git checkout <BRANCH>
git tag <version_name>
git push [origin][branch]
git format-patch origin
git commit -m "descriptive message"
git commit -a
git am -3 patch.mbox (In case of conflict, resolve the conflict and)
git am --resolve
git pull (does a fetch followed by a merge)