git

snippetSetup Github account for remote version control

First things first need to set up ssh key pairs displayed on their site.
Then need to add this via your own git project.
$ git config --global github.user username
$ git config --global github.token your_token_id

snippetStarting with Git

Introduce yourself to git

$ git config --global user.name "Peter J Lord"
$ git config --global user.email "me@plord.me.uk"

Now initialise your project by telling git to monitor your project

$ git init

Now add all the files to it

$ git add .

Finally commit the files to git

$ git commit

Pages