Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 223 Bytes

git_tutorial_merge_branches_with_conflict.md

File metadata and controls

13 lines (12 loc) · 223 Bytes

branchX = branch to merge into master

  • git co branchX
  • git rebase master
  • {fix conflicts}
  • {run tests}
  • git st
  • git co master
  • git merge --no-commit branchX
  • gitg
  • {run tests}
  • git st
  • git push origin master