Effectively Using Git
- git clone
[repo url]
- cd
[repo name]
- Make your changes
- rm -rf ./.git
- git init
- git add --all
- git commit -m "Initial commit."
- git remote add origin
[repo url]
- 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!