-
First of, thanks for this great tool, it has really improved by Git workflow significantly. I was trying out the This takes quite abit of time so I am wondering:
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @jakejx, thanks for reporting. This is something I didn't implement rather than a feature. The reason that we do a fetch at all is to determine if the branch was updated as part of the submit operation or not, but this only requires that we fetch your remote branches. If you're interested, I can show you where in the code you could make the changes to only fetch your relevant branches. For the general Git mechanism to reduce fetched branches, you should use a refspec and specify that you only want to fetch the repository main branch(es) and possibly your own branches. You can always manually fetch a given branch by name later before switching to it. |
Beta Was this translation helpful? Give feedback.
Hi @jakejx, thanks for reporting. This is something I didn't implement rather than a feature. The reason that we do a fetch at all is to determine if the branch was updated as part of the submit operation or not, but this only requires that we fetch your remote branches. If you're interested, I can show you where in the code you could make the changes to only fetch your relevant branches.
For the general Git mechanism to reduce fetched branches, you should use a refspec and specify that you only want to fetch the repository main branch(es) and possibly your own branches. You can always manually fetch a given branch by name later before switching to it.