-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
52 lines (29 loc) · 1.25 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
To work on this project you will need to do the following.
1. Create yourself an account on github (free).
2. Set ssh keys so you can communicate securely with the server.
See https://help.github.com/articles/generating-ssh-keys
This needs to be done only once per account per machine.
3. Clone the repository using
git clone git@github.com:psaha/ifm
Files will go into the ifm/ directory.
You can update from the server at any time by typing
git pull
inside the ifm directory.
4. To edit collaboratively, tell me your username, so I can add you as
a collaborator.
5. Configure git on your machine, adapting the following
git config --global user.name "Alan M Turing"
git config --global user.email amt@universal.machine
This is not essential, but good practice. It's fine to put your
real name and email address here -- no spam results.
6. When you add a new file that you wish to be tracked:
git add myfile
7. When you want to send your current version to the server:
git commit -am "short message"
git push origin master
8. A useful command is
git status
9. You can see stats and stuff here:
https://github.com/psaha/ifm
10. Absolutely everything about git:
http://git-scm.com/book/