Skip to content
Rajesh Singh edited this page Jul 2, 2023 · 3 revisions

Configure git

Add your name

  • git config --global user.name "your_username"

Add your email

  • git config --global user.email "your_email_address@example.com"

Check

  • git config --global --list

Clone a repo to your computer and add a file

  • git clone git@github.com:rajeshrinet/pystokes.git
  • git add FILENAME
  • git commit -m 'Initial commit'
  • git push

Read more