Skip to content
Discussion options

You must be logged in to vote

There were no code changes just a merge done remotely (after a code change) that causes this.

You did a merge with a merge commit, that's why there's an additional commit on master. That's entirely normal.

The common approach would be to delete (or just leave) the feature branch after the merge (git branch -d feature), and create a new feature branch (starting from master again) for the next feature you're working on. If you want to keep working from the same branch for some reason doing a local fast-forward merge from master as you did is exactly the right thing to do.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by dmastrop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Programming Help Discussions around programming languages, open source and software development
2 participants