Just a bunch of git related things (I keep forgetting how to do them!) How to add new files to an existing Github repository # first create your repository in github cd ~/your-files-to-add/ git init . git remote add origin git@github.com:yourname/yourrepo.git git pull origin master git add “list-of-files-to-add-to-github” git commit -m “some comment” git push […]
Github stuff
- Post date
- Categories In Web Development
- Tags git, github