Effectively Using Git

  1. git clone
    [repo url]
  2. cd
    [repo name]
  3. Make your changes
  4. rm -rf ./.git
  5. git init
  6. git add --all
  7. git commit -m "Initial commit."
  8. git remote add origin
    [repo url]
  9. git push origin master -f

Congratulations! You've made your first commit, and are well on your way towards employing the best practices of a software engineer!