Is it possible to pull from all local branches? #4562
-
I find that I usually need to pull from the feature branch or from the development and I need to go to that branch, checkout it and only then can I do pull. So, I wondered if it is possible to have a keymap that pulls from all the branches that require pull? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You don't have to check out a branch in order to pull it if it is only behind its upstream (e.g. But in the latest version (0.50) we also added a feature to auto-forward branches; by default this is only done for the main branches (usually "master" or "main"), but you can set it to also do it for feature branches if you want, by saying git:
autoForwardBranches: allBranches Let me know if these still don't address your wish enough. |
Beta Was this translation helpful? Give feedback.
You don't have to check out a branch in order to pull it if it is only behind its upstream (e.g.
↓3
, as opposed to diverged, as in↓7↑5
). Just select the branch and hitf
.But in the latest version (0.50) we also added a feature to auto-forward branches; by default this is only done for the main branches (usually "master" or "main"), but you can set it to also do it for feature branches if you want, by saying
Let me know if these still don't address your wish enough.