merenlab / illumina-utils

A library and collection of scripts to work with Illumina paired-end data (for CASAVA 1.7+ pipeline).
GNU General Public License v2.0
89 stars 31 forks source link

Update README.md #2

Closed HMorrison closed 9 years ago

HMorrison commented 9 years ago

Just copy edits.

meren commented 9 years ago

Thank you very much, Hilary!

HMorrison commented 9 years ago

I am trying to learn about Github, but don’t have any of my own repositories to play around with. What do you use for the local ‘git’ on a Mac?

On May 12, 2015, at 10:59 AM, A. Murat Eren notifications@github.com wrote:

Thank you very much, Hilary!

— Reply to this email directly or view it on GitHub.

Hilary G. Morrison, Ph.D.
Senior Research Scientist
Josephine Bay Paul Center
Marine Biological Laboratory
7 MBL Street
Woods Hole, MA  02543-1015

508-289-7339
meren commented 9 years ago

I think you should install git, and use it through the command line.

You can clone a repository from GitHub using git. For instance, once you have git installed, you can create a copy of illumina-utils repository by typing,

git clone https://github.com/meren/illumina-utils.git

after which you can follow all the files you have changed in your local copy by typing

git status

and all the changes you made by typing

git diff [file path]

:)