Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git reset to a file

git checkout HEAD -- my-file.txt
# ... which will update both the working copy of my-file.txt and
# its state in the index with that from HEAD.
# -- basically means: treat every argument after this point as a file name.
Comment

git reset change in one file

# undo local changes to specific file
git checkout -- file
Comment

git reset one file

git checkout HEAD -- my-file.txt
Comment

reset certain file git

git checkout c5f567 -- file1/to/restore file2/to/restore
Comment

PREVIOUS NEXT
Code Example
Shell :: how to change git author 
Shell :: how to uncommit last commit in git 
Shell :: ssh no strict checking 
Shell :: git force checkout 
Shell :: linux document root 
Shell :: shell open program 
Shell :: bash temporary file 
Shell :: git remove remote file keep local 
Shell :: wsl restart 
Shell :: Bash file permission 
Shell :: install tailwind expressjs 
Shell :: remove space at end of each line file 
Shell :: bash rename files based on date modified 
Shell :: Failed to start The Apache HTTP Server. 
Shell :: pip install from github ssh 
Shell :: find image size terminal 
Shell :: git commit to a new branch 
Shell :: git fetch remote branch 
Shell :: docker logs last few lines 
Shell :: How to run a command within another command bash 
Shell :: shell profile 
Shell :: powershell script path 
Shell :: how to check if a commit is in a branch 
Shell :: install discord bot on server 
Shell :: find a file in linux terminal 
Shell :: install ruby 
Shell :: install plasma kde manjaro 
Shell :: video editor linux 
Shell :: fatal error: ft2build.h: No such file or directo 
Shell :: git get repo with composer 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =