git 명령어 단순 나열

EBinY·2022년 1월 4일
0

git 명령어 정리

git init
git add index.js
git commit -m 'str'
git commit --amend
git reset HEAD^
git clone https://github.com/kimcoding/test
git status
git log <commit code 앞 7자리(해쉬값)>
git remote add origin https://github.com/kimcoding/test
git push origin main
git remote -v
git fetch
git pull <원격 저장소 명> <branch 명>
git diff HEAD origin/master

0개의 댓글