질문자 :sinoohe 다음을 사용하여 저장소를 복제합니다. git clone ssh://xxxxx/xx.git 그러나 일부 파일을 변경하고 add 하고 commit 후 서버에 푸시하고 싶습니다. git add xxx.php git commit -m "TEST" git push origin master 그러나 내가 다시 얻는 오류는 다음과 같습니다. error: src refspec master does not match any. error: failed to push some refs to 'ssh://xxxxx.com/project.git' 아마도 당신은 단지 커밋해야 할 것입니다. 내가 할 때 나는 이것에 부딪쳤다. mkdir repo && cd repo git remote add o..