-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
28 lines (19 loc) · 789 Bytes
/
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
Using Git through Git Bash terminal window:
After setting up git : http://help.github.com/win-set-up-git/
< for the first time, copy the entire folder to your local directory>
$ git clone [email protected]: tonydevencenzi/KinectedConference.git
<navigate to the right folder which includes the file you are going to push>
$ cd ~/KinectedConference
$ cd KinectSDKandOF
<push the file you want to update>
$ git add testApp.cpp testApp.h grabVideo.h grabVideo.cpp
$ git commit -m ‘what have been changed’
<add remote origion, this is only needed to be done once>
$ git remote add origin [email protected]: tonydevincenzi/KinectedConference.git
<confirm pushing>
$ git push origin master
(Fetch updates)
git fetch
git merge origin/master
merge help:
http://learn.github.com/p/branching.html