Answers for "git restore"

5

git soft reset head

git reset --soft HEAD^
//resets head by 1
Posted by: Guest on August-13-2020
7

git clean

//Remove untracked files
git clean -f

//Remove untracked directories and files
git clean -fd

//Remove untracked ignored files
git clean -fX

//Remove all untracked files 
git clean -fx
Posted by: Guest on June-08-2020
3

git reset head

sudo git reset --hard Head
Posted by: Guest on December-09-2020
0

what does git restore do

The "restore" command helps to unstage or even discard uncommitted
local changes.

One the one hand, the command can be used to undo the effects of
git add and unstage changes you have previously added to the Staging
Area.

On the other hand, the restore command can also be used to discard local
changes in a file, thereby restoring its last committed state.
Posted by: Guest on July-28-2021
0

git restore

git restore "PATH"
Posted by: Guest on August-08-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language