Initial config, setup & SSH key
Set up initially in local machine, remote connection setup
- Setup / Config your user name, email globally in local machine
git config --global user.name "Your User Name"
git config --global user.email "Your Email Address" - Once setup done, cross check your current user name, email in git config
git config user.name
git config user.email - Once went inside the respective directory / folder of repository, to initialize the git
git init