gitbub

· Git
이 방법을 Terminal을 이용한 업로드 방식이다. 아래의 코드를 차례로 입력하면 업로드가 된다. git init git add your_want_fill //만약 해당 위치에있는 모든것을 올리고 싶을때는 git add . git commit -m 'first.commit' git branch -M main git remote add origin your_git.git git push -u origin main !! 중요!! 푸쉬가 안될경우 pull을 하지 않아 그럴 수 있다. 그럴때에는 git pull origin main 만약 fatal: remote origin already exists. 이 요류 발생 시 git remote rm origin 명령어를 통해 저장소를 지워주고 다시 git remo..
TeaHuiLee
'gitbub' 태그의 글 목록