Bureaucrats, confirmed, Administrators
4,558
edits
No edit summary |
(a few branch command examples) |
||
Line 22: | Line 22: | ||
git log --stat | git log --stat | ||
</source> | </source> | ||
== Git Branch == | |||
* list the branches you have locally <code>git branch --list</code> | |||
* list the branches that are on remotes <code>git branch -r --list</code> | |||
* checkout a remote branch, setting the local one to track <code>git checkout -t freephile/patch-1 | |||
== Git Log == | == Git Log == |