Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 495 Bytes

10.md

File metadata and controls

17 lines (12 loc) · 495 Bytes

Git: beyond the basics

Branching and merging best practices

  • Isolate ongoing developments on branches.
  • Pull and merge/rebase from upstream often.
  • Push often if you want others to be able to base work on your changes.
  • Upstream should never have to resolve a merge conflict.
  • Whoever wrote the code should merge the code.
  • Don't change the history of a public branch.
  • Communicate with other developers about a branching strategy ahead of time.

back

next