✍️ 자주 사용하는 git 명령어 위주로 정리 해보았다. 필요할 때 하나씩 꺼내 먹어야지
git init
git init
git config
git config --global core.autocrlf input
Windowsgit config --global core.autocrlf tr
종료 : q 입력
git config --global user.email "abcd@gmail.com"
git config --global user.name "abcd"
git config --list
git config --global init.defaultBranch 브랜치
git status
git status
☝️.gitignore
☝️한글깨짐 현상 해결 코드
git config --global --edit
git config --global core.quotepath=false햐
git add
git add .
git commit
git commit -m "커밋 메시지"
am add+message, unstaged 된 모든 파일을 staged 로 올려주고 commit 함.
git commit -am "커밋 메시지"
git commit 파일명1 파일명2 -m "커밋메시지"
git log
git log
git short log
git checkout
git checkout HEAD~숫자
git checkout 커밋아이디
git checkout 브랜치명
git branch -r
으로 브랜치명 확인 후 명령어 사용
git checkout -t origin/siginin
git checkout -b siginin
git diff
git diff
☝️powershell 한글 깨짐 현상 해결 코드
set LC_ALL=ko_KR.UTF-8
git remote
git remote 변경 : 기존 remote 제거 → 새 깃헙주소 remote 추
git remote remove origin
git remote add origin 깃헙주소
git remote get-url origin
git push
git push origin master
git pull
git pull origin master
git reset
git reset HEAD
git reset HEAD~돌아가고싶은 단계 수
git reset HEAD~1 --soft
git reset HEAD~1 --mixed
git reset HEAD~1 --hard
git reset id7자리
git reset --hard ORIG_HEAD
git revert
git revert HEAD
git revert HEAD~돌아가고싶은 단계 수
git revert id7자리
git branch
branch 확인
git branch
master branch pull
git pull origin master
git branch
git branch 추가할 브랜치명
git branch -d 브랜치명
git checkout -t 브랜치명
사용 전 확인 할 때 사용.
git branch -r
git branch -m master main
git merge
git merge 합치려는 브랜치명
git rebase
git rebase 합치려는 브랜치명
git rebase --continue
git rebase --abort
git cherry-pick
git cherry-pick 가져올 커밋 아이디
git cherry-pick --continue
git cherry-pick --abor
git tag
git tag 태그명
git stash
git stash
git stash list
git stash apply
git stash pop
git stash drop
git fetch
git fetc
git rm -r —cached .