Can't push new branch with forward slash in the name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| C:\Program Files\WindowsPowerShell\Modules\GoDnsServerManagement [develop]> git checkout -b feature/test | |
| Switched to a new branch 'feature/test' | |
| C:\Program Files\WindowsPowerShell\Modules\GoDnsServerManagement [feature/test]> git push -u origin feature/test | |
| fatal: feature/test cannot be resolved to branch. | |
| fatal: The remote end hung up unexpectedly | |
| C:\Program Files\WindowsPowerShell\Modules\GoDnsServerManagement [feature/test]> git push -u origin 'feature/test' | |
| fatal: feature/test cannot be resolved to branch. | |
| fatal: The remote end hung up unexpectedly | |
| C:\Program Files\WindowsPowerShell\Modules\GoDnsServerManagement [feature/test]> git push -u origin feature/test:feature/test | |
| error: unable to push to unqualified destination: feature/test | |
| The destination refspec neither matches an existing ref on the remote nor | |
| begins with refs/, and we are unable to guess a prefix based on the source ref. | |
| error: failed to push some refs to 'git@dev-git.orlando.local:bshacklett/GoDnsServerManagement.git' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment