Any info I have found in similar threads could not help me solve the problem.
Basically, I am working on a git project. My usual way of working have been:
git checkout -b new_branch #Create a new branch
I program in Julia programming language, using the Juno IDE within Atom. I have a Julia package in the "dev" folder (for those into Julia developing). I make a couple of changes to the code. Atom/Juno lets me commit them. When I am done I go to gt and write
git push git_user_name origin
This is the routine someone told me, and while I am not very familiar with git it has kinda always worked out. Until now, when I got this back:
error: src refspec origin does not match any.
error: failed to push some refs to 'git@github.com:JuliaPackage/JuliaSubPackage.jl.git'
Only a week ago or so I did all this and it worked out. But now I get this error. Lots of online help threads seem to suggest that an initial commit is missing, but I have made several commits here.
Does anyone have any suggestions on what might be going on?