Wii Pointer #1 Tilt Normal
본문 바로가기
📁 𝐭𝐨𝐨𝐥&𝐯𝐢𝐫𝐭𝐮𝐚𝐥𝐌𝐚𝐜𝐡𝐢𝐧𝐞/Git & GitHub

[git] useful git delete / recover commands on cli environment

by 개발자_후니 2024. 6. 2.
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

 

GitHub - Ju-jh/git_command_practice: git command practice repository

git command practice repository. Contribute to Ju-jh/git_command_practice development by creating an account on GitHub.

github.com

 

728x90
반응형