I have an application running in a git repository on a branch (say dev). The application modifies the content in some the repository and commits them. I now have to merge these changes into another branch (say master) but the snag is that I don't want to git checkout master before doing this. Is there some way to say "merge current branch into master"?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||||||
|
|
The "master" in your case appears to be "fast-forwardable". You could "push" the branch to master.
|
|||||||||||||
|
|
One possible solution would be to clone the repo and perform the merge in said clone (with Then, at a later date, when able to checkout |
|||||||||
|