I have got new design project in localhost and I have gotten github account with old design. I want to upload it to new branch.
- I create new branch with web interface on the github "new-design".
- I create local git repo:
#git init - I add the remote repo:
#git remote add github url - I add files and commit it all:
#git add -A,#git commit - Now I want to upload it to github, I run:
#git push github new-design
error: src refspec new-design does not match any.
What I must to do? How push it to new-design brunch on the github server?