Reputation: 10590
I have a repository and I used to work with the master branch myself, now we got a new employee, we created a new branch for him, and now his branch is stable, how can I copy its content to the master branch ?
I am using bitbucket
Upvotes: 0
Views: 44
Reputation: 411
It sounds like you just want to do a git merge
? The process of doing it is described here, but the tl;dr is git checkout master && git merge his-branch
Upvotes: 3