DEV Community

Discussion on: Git branching for small teams

Collapse
 
jeromewilson1 profile image
Jerome Wilson

To avoid swapping branches when merging master, I tend to do this instead:

git fetch
git merge origin/master
Enter fullscreen mode Exit fullscreen mode