저는 Git을 처음 접했습니다. 최근에야 GitHub 계정을 만들었습니다.
방금 첫 번째 저장소 (샘플 프로젝트)를 푸시하려고했지만 다음과 같은 오류가 발생합니다.
No such remote 'origin'
다음 명령을 실행했습니다.
git init
git commit -m "first commit"
git remote add origin https://github.com/VijayNew/NewExample.git
git push -u origin master
그러나 git commit -m "first commit"을 실행하면 다음 메시지가 표시됩니다.
nothing added to commit but untracked files present (use "git add" to track)
그래서 나는 origin
사용하여 설정하려고했습니다.
git remote set-url origin https://github.com/VijayNew/NewExample.git
하지만 다음과 같은 오류가 발생했습니다.
No such remote 'origin'
내가 뭘 잘못했고 어떻게해야하나요?
git remote -v
디스플레이는 없습니다.
git-remote -v
합니까?