We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In your solution you first use
git fetch origin main~1:foo
, but when using it in the game, I get such a mistake:
When running your solution with real repository, get
fatal: invalid refspec 'main~1:foo'
I even tried to use
git fetch origin main^:foo
But get the same error
fatal: invalid refspec 'main^:foo'
Please find a new solution
The text was updated successfully, but these errors were encountered:
@stas1404 I ran into this same issue. The solution I found was to reference by the direct commit numbers. For example: git fetch origin c3:foo
git fetch origin c3:foo
Sorry, something went wrong.
saivittalb
No branches or pull requests
In your solution you first use
,
but when using it in the game, I get such a mistake:
When running your solution with real repository, get
I even tried to use
But get the same error
Please find a new solution
The text was updated successfully, but these errors were encountered: