hub introduces git to GitHub

hub 1.7.0 screencast (by Mislav Marohnić)

"

When branches are created using the —track option, they will be set up to linked to the remote branch. For example, if you wanted to create a new branch from the master branch from the origin remote, using this would set it up so it would pull from the remote and branch automatically:

$ git branch —track feature1 origin/master

Branch feature1 set up to track remote branch refs/remotes/origin/master.

"

Siempre es bueno recordar algunos simples comandos que facilitan el trabajo.

git ready » remote tracking branches