본문 바로가기
Programming

git local 작업시 remote origin 추가하기

by 하하호호 2021. 9. 21.
반응형

 

 

 

깃헙 push 하기

 

깃헙을 이용하면서

local에서 작업하면 새로운 remote origin을 추가해야할

필요가 생길 때가 있다.

 

먼저 새로운 디렉토리에 대한 git을 초기화 시킨다.

git init

git status

git add .

git commit -m "new Things created" -m "description new"

git remote add origin "git ssh address"

git remote -v

깃 상태를 확인해보면

현재 수정된 파일을 확인할 수 있다.

 

 

새로운 origin 추가하기

 

git add를 통해 수정된 파일을 add하고

commit을 진행하면 local에서 수정된

파일들을 push 할 준비가 완료되었다.

 

만약 

fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.

error가 발생한다면, remote에 새로운 origin을

추가해줘야 push가 가능하다.

 

깃헙에서 새로운 repository를 생성하고,

git remote add origin "Git SSH address"명령을

통해 새로운 origin을 추가하고 다음 명령을

실행하면, 새로운 origin이 생성된 것을 볼 수 있다.

 

git remote -v

 

이제 다시 수정된 파일을 깃헙에 올리면 된다.

git push origin master

 

origin master을 매번 push할 때마다 타이핑할 

필요는 없다.

 

 

헙 Upstream 사용하기

 

git push -u(Upstream) origin master

명령어는 push 뒤에 origin master 타이핑을

default로 잡아주기 때문에 한번만 명령어를

입력하고 나면, 이후에는 

git push 

명령만으로도 push 실행이 가능하다.

 

 

 

 

반응형

댓글