<mohammadrony>

Change Modification

Restore

Restore file in current branch

git restore *.file
git restore ./path/to/file

Stash

Save changes

git stash

Apply latest stash

git stash apply
git stash drop
git stash pop

Clear all saved copy

git stash list
git stash clear