Skip to main content

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

How to add SSH key to your GitHub account?