how to log in git code example
Example 1: how to login to git from terminal
git config --global user.name "your_username"
Example 2: how to login to git from terminal
git config --global user.email "[email protected]"
Example 3: git log
git log # show commits
git log -p # show diff files
git log -p <path> # show diff specified files