728x90
반응형
git delete / recover commands
fetching log command
▪️ git log :
commit 되거나 merge 되어진 log들을
볼 수 있는 log 불러오기
change staged files to unstaged commands
▪️ git reset :
add 되어 staging 되어진 파일들을
다시 stash 하기
▪️ git reset [경로/파일명.확장자] :
특정 파일만 unstage 하기
delete commit commands
▪️ git reset HEAD^ :
가장 최신 commit 전으로 돌아가기
▪️ git reset [commit log num] :
Commit log num의 커밋으로 돌아가기
▪️ git reset —hard [commit log num] :
Commit log num의 커밋으로 돌아가면서 파일 또한 그때의 파일 상태로 돌아가기
recover commit commands
작성중...
testing commands on cli environment image
git repository url which I practiced
https://github.com/Ju-jh/git_command_practice
728x90
반응형
'📁 𝐭𝐨𝐨𝐥&𝐯𝐢𝐫𝐭𝐮𝐚𝐥𝐌𝐚𝐜𝐡𝐢𝐧𝐞 > Git & GitHub' 카테고리의 다른 글
[git] useful git commands on cli environment (0) | 2024.06.02 |
---|---|
GitHub Repository에 내 파일 push 하는 방법 (0) | 2023.02.19 |
[Git & GitHub] 협업, merge, branch (추가작업 요망) (0) | 2023.01.13 |
[Git & GitHub] commit, 원격 repo, .gitignore (3) | 2023.01.13 |