Skip to content

Common Git Commands

larrymelia edited this page Jun 17, 2013 · 2 revisions

Git Links

http://stackoverflow.com/questions/2648375/git-merging-changes-to-local-branch

https://github.com/webmat/git_remote_branch

Git Training Videos

Branch and Merge

Get Commands:

git checkout -t origin/{branch} << checkout existing branch with tracking

git checkout -b {newBranch} origin/{newBranch} << creates new branch from origin

git checkout -b {newBranch} {fromOldBranch} << creates new branch from old branch

Clone this wiki locally