git

[git] git 명령어 저장소

20대 청년 2020. 5. 26. 00:00

 

git 명령어

 

git repository clone

 

git clone <clone url>

 

git remote

 

git remote add origin <repository url>

 

 

수정된 모든 파일 추가

 

git add .

 

 

추가된 파일들 Commit

 

git commit -m "메세지 내용"

 

커밋된 파일들 git 저장소에 push

 

git push origin <branch name>