GIT COMMANDS FOR HACKTOBERFEST


1. open cmd in the current folder
  1. git config --global user.name "username"

  2. git config --global user.email "email@email.com"

  3. git init

  4. git remote add keyword
    6 a.) git add . #add all files in the current working directory
    or
    b.) git add #only add a specific file (not all files)

  5. git status

  6. git commit -m "Initial Commit"

  7. git push -u keyword master #main