Basic Git Command part 01 git->bitBucket | git->gitHub | git->gitLab Read for more info https://git-scm.com/docs CONFIG GIT Read for more info https://adamtheautomator.com/git-bash/ Downloading and Installing Git (Bash) https://gitforwindows.org/ Run the git command below to verify Git Bash is installed and its current version (--version). git --version 1. Launch Git Bash console by clicking on the Start button, type git, and click on Git Bash. 2. Run the below git config command to add your name (YourName) as your git username (user.name). The git config command administers configuration variables that control how Git looks and operates. Pass the --global option to the git config command to define the configuration variable (YourName) in the ~/.gitconfig file specifically. git config --global user.name "YourName" 3. Now open the command prompt and run the below git config command to add your email ("TestEmail@mail.com") as your git user email (--g