-
Notifications
You must be signed in to change notification settings - Fork 317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating a new branch #828
Comments
Hey @simonwhite71 thanks for the report. You aren't doing anything wrong, this looks like a bug that was introduced by #824 In that PR we started checking for what files will be changed by the git action before we switch branches. But that breaks down if we are opening a new branch. The relevant lines are these: Lines 385 to 405 in 1a57cab
|
Also, great job tracking down that it was a git diff error. The reason |
Oh good, glad I could help, any idea when it might be resolved (not an issue for now, we can always branch manually) |
Fix is here: #829 So waiting on review of that - then we can do a patch release. You can also downgrade to |
Thats great, thanks for being so responsive, I will wait for the next patch release 👍 |
If I try and make a new branch called "test" with the UI it says
ambiguous argument 'test': unknown revision or path not in the working tree. Use '--' to separate paths from revisions, like this: 'git <command> [<revision>...] -- [<file>...]'
Which is the same error I see if on the command line I run
git diff test
rather than
git checkout -b test
Am I doing something wrong?
Also if in the UI I try to make a branch with name
-b test
I get the error messageusage: git diff [<options>] [<commit> [<commit>]] [--] [<path>...]
The text was updated successfully, but these errors were encountered: