git bisect reset
git bisect bad urhsn47f
If we don't specify the known bad commit it will assume the last commitgit bisect bad
git bisect good d5b370ec
git bisect start
git diff HEAD
git diff --staged
The alternative command is:git diff --cached
vim test.txt
git merge --abort
git add -p
It will ask us interactively whether we want to add each individual changes to the staging area or not
y
means yes, n
means nogit config --local user.email "tandilashvilivaleri@gmail.com"
After the command execution, In local config
file located at .git/config
will be added the following[user]
email = tandilashvilivaleri@gmail.com
git config
defaults to --local