Author: Sagar

6.6 Git diff

1 Track the changes of two commits git diff <commit1-sha> <commit2-sha> 2 Track the changes of two branches  git diff <branch 1> < branch 2>

Read More »

6.5 Git stash

git stash commands : 1 To stash(hide) the staged files git stash 2 To stash(hide) staged/untracked file git stash -u 3 To Git Stash Save

Read More »