Advertisement
Guest User

Untitled

a guest
May 25th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. create a branch: git branch testing, testing is the branch name
  2. point to a branch: git checkout testing
  3. git checkout master
  4. create and point to a branch: git checkout -b testing
  5. list of current branches: git branch
  6. merge: git checkout master ; git merge testing
  7. delete a branch: git branch -d testing
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement