반응형
이 방법을 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 remote add origin 'your_git.git'명령어를 통해 저장소를 만든다
반응형
'Git' 카테고리의 다른 글
[Git] 훌륭한 Git 커밋 메시지의 7가지 규칙 (0) | 2024.02.15 |
---|---|
[GIT] 깃 push 오류 #The current branch master has no upstream branch.To push the current branch and set the remote as upstream, use (0) | 2023.03.10 |
[ubuntu][Git] 아이디 패스워드 저장하기 (0) | 2022.05.28 |
[GitHub] 개인 액세스 토큰 만들어 인증하기 Support for password authentication was removed on August 13, 2021. (0) | 2021.10.01 |
[GIT]github, gitlab에 업로드한 파일/폴더 삭제 (0) | 2021.08.04 |