This is a file of how to do various things with git
-
$ git add .
-
$ git commit - m 'What has changed'
-
$ git push <destination> <branch>
-
$ git add . Adds all files
-
$ git commit -m "Meaningful Message of what has been changed" Commits changes
- Got to Github
- Click create new repository
- Copy the "$ git remote (...)" line
- run the line in terminal
- git push <destination> <branch>
-
$ git push origin master