Thursday, August 13, 2015

Git Made Easy - Part 1

$ git checkout main_dev
$ git pull
When first pull gives "Already up-to-date.". Then I can proceed in this way.
$ git checkout task#r1005
$ git push origin task#r1005:main_dev
$ git checkout main_dev
$ git pull
$ git checkout -b task#r1006

No comments:

Post a Comment