You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's not going to work. What if I'm trying to check out a file that has the same name as one of my branches?
"--" is now ambiguous in this case. It's accepted by both git-number and git-checkout as valid parameters. Basically I want to pass in the "--" literally to the git subcommand. So maybe you could choose a different symbol for your "literal passthrough" that doesn't clash with git's accepted version?
Maybe do this instead:
$ git number -s ++ -b
Which will allow me to do this:
$ git number checkout -- 1
And since you use ++, you won't parse out the -- and it will work the same as before.
After new changes to allow argument passthrough for
git number -s
, I can't check out files anymore using numbers:The text was updated successfully, but these errors were encountered: