From Fedora Project Wiki

Revision as of 19:04, 12 June 2008 by Ivazquez (talk | contribs) (Tribal knowledge is bad)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Warning.png
Quick Reference Only
This is not intended to be an exhaustive list of git operations. See the documentation for that.

Basic Operations

Developer Operations

Create a new local branch

git checkout -b <branch>

Push and create a new remote branch from an existing local branch of the same name

git push origin <branch>

Maintainer Operations

Apply mailed git patch

git am <file>