본문 바로가기

Contact English

【GitHub】 깃허브 주요 명령어 정리

 

깃허브 주요 명령어 정리

 

추천글 : 【컴퓨터과학】 컴퓨터과학 목차 


 

1. git pull 등

○ git pull origin [branch] : 파일을 깃허브 저장소에서 가져오기 

○ git fetch : git pull과 유사

○ git clone [GitHub_DIR] : GitHub에 있는 특정 디렉토리의 코드를 전부 긁어 옴

 

 

2. git push 등

○ git status : 어떤 파일이 수정됐는지 알 수 있음

○ git branch : branch 목록 보기. * 표시가 있는 게 활성화 된 branch

○ git branch -r : 원격 저장소의 branch 확인

○ git branch -v : branch의 마지막 commit 메시지 확인

○ git branch [NAME] : branch 생성하기

○ git checkout [NEW_BRANCH] : 다른 branch로 switch

○ git commit [FILE] : 특정 파일을 commit 

○ git commit -m "message" 

○ git config --global user.name [ID] : 로컬 컴퓨터의 깃에 ID 등록

○ git config --global user.password [PW] : 로컬 컴퓨터의 깃에 PW 등록

○ git filter-branch -f --index-filter 'git rm --cached --ignore-unmatch [FILE]' : 특정 파일의 캐쉬 삭제 

○ git push origin [NAME] : branch를 github에 push

 

 

3. 기타

○ Ruby 개발 환경 설치

 

sudo apt-get install ruby-dev
sudo gem install jekyll bundler

 

 

입력: 2023.04.21 13:24