×
Clear all filters including search bar
Valeri Tandilashvili's Git Notes
git bisect good d5b370ecgit diff HEADgit diff --stagedThe alternative command is:git diff --cachedvim test.txtgit merge --abortgit 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 --localcat .git/configmygit inside the current folder and an empty git repository into the newly created foldergit init mygitgit log --allmaster 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