Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.43 KB

README.org

File metadata and controls

44 lines (29 loc) · 1.43 KB

Proposal document for the CERN prototype detector and running.

For editors:

Here is a quick start guide to using this repository. It presents just one way to do things.

Get started:

The first steps is to ”clone” the GitHub repository

$ git clone https://github.com/cjslin/test.git
$ cd test/
(edit files)
$ git add yourfile.tex
$ git commit -a -m "Some useful commit message"

Updating your repository

From time to time you will want to ”pull” contributions from others into your repository.

$ git commit -a -m "Some useful commit message"
$ git pull

Pushing contributions back to GitHub

First, you will need a (free) GitHub account and to send the user name to [email protected]. Be sure to mention this repository.

To ”push” your commits back to GitHub do:

$ git commit -a -m "Some useful commit message"
$ git pull
$ git push
(enter user and password)

The ”pull” is needed to first incorporate into your repository any changes that others may have pushed to GitHub since the last time you did a ”pull”.

If you get annoyed at using passwords all the time it is recommended that you use ssh keys but you can also cache your password.