Skip to content

Working with branches

mirontoli edited this page Apr 20, 2011 · 1 revision

Command line

  • git checkout master
  • git checkout -b new-branch (call it something appropriate)
  • work with it
  • git commit -am "Done with new-branch"
  • git checkout master
  • git merge new-branch

Eclipse + Egit