Reputation: 928
I want to merge from master (current branch) to branch1.
To do this, using TortoiseGit, as far as I could search, I need to switch to branch1 and merge from master.
Is it possible to do it using TortoiseGit without switching branch?
Upvotes: 2
Views: 240
Reputation: 36740
Currently this isn't possible in TortoiseGit.
... merging always takes place within a working tree. If you want to merge changes into a branch, you have to have a working tree for that branch checked out, ...
from: https://tortoisegit.org/docs/tortoisegit/tgit-dug-merge.html
Upvotes: 1