jacogr / atom-git-control

Not maintained :(
MIT License
227 stars 70 forks source link

Push to git Flow Feature branch Failing #154

Open dortega3000 opened 8 years ago

dortega3000 commented 8 years ago

I have a project with using git control, when I try to push changes to my feature branch they fail. I can see the following error in the console

git -c push.default=simple push origin feature --porcelain error: src refspec feature does not match any. error: failed to push some refs to 'git@github.com:XXXXXXXXXX'

This is caused by the branch name being truncated at the '/' char, as the correct command should be:

git -c push.default=simple push origin feature/Login_Register --porcelain