TubeTK/Development/GITCheatSheet: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(New page: = Create a checkout = *git clone git://gitorious.org/tubetk/tubetk.git = Push local changes = *git push origin master = Track a remote branch = "git fetch" (get up to date) or "git pull"...)
 
(Blanked the page)
 
(44 intermediate revisions by 6 users not shown)
Line 1: Line 1:
= Create a checkout =
*git clone git://gitorious.org/tubetk/tubetk.git


= Push local changes =
*git push origin master
= Track a remote branch =
"git fetch" (get up to date) or "git pull"
*git branch --track somebranch origin/somebranch
*git checkout somebranch
*git commit
*git push
** sends changes to origin/somebranch
** --track is not needed unles you've set branch.autosetupmerge in your config

Latest revision as of 15:15, 26 July 2013