×
Clear all filters including search bar
Valeri Tandilashvili's Git Notes
git bisect good d5b370ec
git diff HEAD
git diff --staged
The alternative command is:git diff --cached
vim test.txt
git merge --abort
git 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
cat .git/config
mygit
inside the current folder and an empty git repository into the newly created foldergit init mygit
git log --all
master
and we want to see other branch's commitsgit log another_branch
After fetching new commits from remote, we can see the new commits (even if we are on master
)git log origin/master --oneline