Using GitHub repositories to store your scripts

First, create a new repository

Go to github.com, sign in, and select “New repository”.

./_static/github-1.png

Second, name your repository.

Something like ‘rnaseq-scripts’ is fine! Be sure to check the ‘initialize’ box.

./_static/github-2.png

Third, clone your repository

Get your GitHub repository url (https://github.com/ctb/rnaseq-scripts.git is mine, in this example);

./_static/github-3.png

Then, on your remote UNIX machine, do:

git clone https://github.com/ctb/rnaseq-scripts.git

This will create a new directory named rnaseq-scripts with a single ‘README.md` file in it.

Fourth, add, commit, and push scripts

The following commands are useful:

  • git add script.txt will add the file script.txt into your local git repository.
  • git commit -am "some message" will save the latest version of the script into your local git repository
  • git push origin will send your committed versions to github, where they will be safe.

Other commands:

  • git log will show you your history.
  • git pull will update your command-line repository from your GitHub account.

LICENSE: This documentation and all textual/graphic site content is licensed under the Creative Commons - 0 License (CC0) -- fork @ github. Presentations (PPT/PDF) and PDFs are the property of their respective owners and are under the terms indicated within the presentation.
comments powered by Disqus