GitBash - ArtTHEbard/SYS255FA19-Notes GitHub Wiki

Git Bash Commands

  • git add . - adds a git repo on your device
  • git commit -m "" - commits the tracked changes and preps the file to be pushed
  • git push orgin "GitHub Repository URL" - pushes changes to remote repository
  • git remote add orgin URL - adds remote Git repo to remote access
  • git remote -v - verifies the remote git repo
  • git push orgin master - pushes changes to master tree in remote repo.