Git commands
Git Commands 1. How to open git in windows? After successful installation of git and configuration of git environment open windows command prompt and execute below commands git if git is installed successfully then it will display list of commands that can used with git. 2. What is the git command to check the version of git. git --version git version 2.16.2.windows.1 This command will display the current version of git installed.In the above example it shows as the version of git as 2.16.2. 3. what is the git command to configure global configuration like name and email id? git config --global user.name "mahesh" git config --global user.email "mahesh.k@abc.com" The above commands configure git username a...