Guest User

Untitled

a guest
Jun 18th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $ git checkout master
  2. $ git difftool -t kdiff3 local-branch HEAD
  3.  
  4. git merge --no-commit --no-ff <local-branch>
  5.  
  6. git commit -a
  7.  
  8. git diff --name-only <branch1> <branch2>
  9. git checkout <branch1> -- <paths>
  10.  
  11. git checkout master
  12. git log --reverse --oneline topic ^master
  13.  
  14. git rebase master topic
Add Comment
Please, Sign In to add comment