Sublime Forum

Please allow queueing of commands

#1

On command line, especially when I’m dealing with a few branches, I often type the next git command before the current command is done executing. Especially when pulling and pushing a few different branches.

Trying to do this in Sublime Merge, it seems to only be able to deal with 1 queued command, and it will always be the last command entered.

Example:
git checkout master
git pull
git checkout feature
git pull
git checkout other-feature
git pull

It will only pull master and other-feature

2 Likes

#2

All git commands are placed into a queue, with no limit to the queue depth. Perhaps your ‘feature’ branch has diverged, which would give the impression that the pull didn’t occur, even though it did.

0 Likes

#3

I don’t know what to say… I guess I’ll make a video to prove it, because it’s very simple what’s happening. Nothing is diverged.

0 Likes