Tagged Questions

18
votes
2answers
9k views

Git merge flattening

If I am working in multiple branches on a single feature, I use git pull branch1 branch2 branch3 to pull all the changes into my master branch. However, all the commit logs of each branch are copied ...
3
votes
1answer
45 views

Git: What is the fastest way to merge a working branch to master?

Suppose I was on master branch and created a new branch: git checkout -b feature_branch I started to work on feature_branch, and at some point I would like to merge my changes to master using ...