My Git/Github Cheatsheet

by on under Git
1 minute read
  1. git init </b> - Make an empty directory into a Git repository
  2. git clone </b> - Basically download the repository
  3. git config user. name username - set the username of the repository
  4. git config user.email user email - set the email of the user of the repository
  5. git status - shows which files have been modified/added and which ones of those are in the staging area and which ones in untracked area.
  6. git add - adds the files to the staging area
  7. git commit -m “message” - commits the repository with the current files in the staging area
  8. git log - shows the commit history
Github, Git
comments powered by Disqus