[Git] 깃 명령어 연습 1

chanto11

·

2019. 12. 27. 13:13

git help  #도움말   git 명령어 --help를 치면 도움말이 나온다.

 

git init    #깃 초기화

 

git status   #깃 상태보기

 

프로젝트 최상단에 .gitignore 추가

깃으로 관리 하지 않을 파일, 폴더 이름을 적어주면 git이 무시한다.

 

git add .           #전체파일 add

git add 파일명   #선택적 add

 

git commit -m "내용"    #커밋 쓰기

git commit                  #커밋 에디터로 쓰기

 

git config --global user.email "자신의 이메일"     #이메일 등록

git config --global user.name "자신의 아이디"     #아이디 등록

 

git log          #git 기록 보기

git shortlog    #짧게 로그보기

 

git checkout -- 파일명    #워킹 트리의 파일을 복원해 주는 역할

git restore 파일명         #워킹 트리의 파일을 복원해 주는 역할 git 2.23.0 이후 버전부터

 

git commit -am "commit 내용"    #git add 하면서 commit을 한번에 한다.
                                            #명령조로 작은 기능단위로

                                            #commit은 항상 자세히 쓴다. 미래의 나와 팀원을 위해서

 

git diff     #(수정된)바뀐 부분을 알수있다

 

 

#자신의 github에서 새 repository를 만든후 repository에 있는 튜토리얼을 따르면된다.

git remote    #원격 서버(repository)를 add한다.

git remote add origin 자신의 repository 주소

 

git push       #원격 서버(repository)에 push한다.

git push -u origin master

 

git pull         #원격 서버(repository)에서 pull한다. (받아오기)

git pull origin master

 

'Git' 카테고리의 다른 글

git push 에러 해결 (fatal: refusing to merge unrelated histories)  (0) 2021.04.22
[Git] 깃 명령어 연습 2  (0) 2019.12.27