-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
35 lines (20 loc) · 1.06 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
This is a placeholder for our CSC670 group project
A git cheatsheet follows:
Git clients:
For windows, Git Extensions is a good one that has both command line and GUI. It also claims to have a Visual Studio plugin, but I couldn't figure it out. http://code.google.com/p/gitextensions/
It contains everything you will need in order to use Git.
From the command line:
run these two commands:
git config --global user.name "Firstname Lastname"
git config --global user.email "[email protected]"
cd to whatever directory you want to store your copy of the files in. Don't use our shared Dropbox directory. It should be private to your system. Then run this command to check out the code, and initialize your local repo.
git clone [email protected]:jonfhancock/CSC670.git
After adding any files, run:
git add *
After changing or adding a file, run:
git commit -m "Your commit message"
After you commit something, run:
git push origin master -u
After the first time you push, you can just use:
git push
Commit and push often, and in small chunks so we avoid collisions.