본문 바로가기
GitHub

[Git] Git 명령어 정리

by veggie-garden 2021. 12. 18.

Git 최초 설정

# 사용자 정보
git config --global user.name <"깃허브 이름">
git config --global user.email <깃허브 이메일>

Remote 

# 리모트 저장소 확인
git remote -v 

# 리모트 저장소 추가
git remote add <단축 이름> <url> 

# 리모트 저장소 이름 변경
git remote rename <old name> <new name>

# 리모트 저장소 삭제
git remote remove <remote>

원격 저장소에 코드 저장하기

# workspace
git add <"파일/폴더 경로">

# staging 
git commit -m "commit message"
git status

# local repository 
git push origin <branch name>

# remote repository
git fetch origin <branch name>

Branch

# 브랜치 이름 변경
git branch -m <old branch name> <new branch name>

# 브랜치 변경
git checkout <branch>

# 브랜치 삭제
git branch -d <branch>

# 원격 저장소 브랜치 이름 변경
## 새 브랜치 생성
git push origin <new branch>
## 전 브랜치 삭제
git push origin --delete <old branch>
git push origin :<old branch>

 

'GitHub' 카테고리의 다른 글

[git] git clone message 의미  (0) 2023.04.18
[뚝딱뚝딱] GitHub 프로필 꾸미기  (0) 2022.01.03

댓글