Link Search Menu Expand Document

🌱 Recent Posts

Git CLI Command

2022-06-26 그만 찾아보고 외우자 git add 취소 $ git reset $ git reset <file> git commit 취소 $ git reset HEAD^ 최신 커밋 취소 $ git reset HEAD~n 최신 n개의 커밋 취소 git push 취소 1. $ git reset <commit id> 2. $ git commit -m "commit messages" ...