방금 github과 함께 git을 사용하기 시작했습니다. 나는 그들의 지시를 따르고 마지막 단계에서 오류가 발생했습니다. 현재 소스 제어되지 않은 기존 디렉토리를 확인하고 있습니다 (1 주일 정도 된 프로젝트). 그 외에는, 나의 유스 케이스는 제재소에서 꽤 뛰어나야합니다.
무슨 일이 일어나고 있는지 :
$ git push origin master
error: src refspec master does not match any.
fatal: The remote end hung up unexpectedly
error: failed to push some refs to 'git@github.com:{username}/{projectname}.git'
Github의 지침 :
Global setup:
Download and install Git
git config --global user.name "Your Name"
git config --global user.email {username}@gmail.com
Next steps:
mkdir projectname
cd projectname
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin git@github.com:{username}/{projectname}.git
git push origin master
git status
모든 것이 정상인지 확인하십시오.