-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
59 lines (51 loc) · 1.86 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
52
53
54
55
56
57
58
Requirements for Running GroundCOFE on Eclipse:
Download eclipse indigo(currently the latest version) from http://www.eclipse.org/downloads/
Download java jdk x86 version 1.7 from http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u3-download-1501626.html
-Note must be the x86 version, because this program uses 32 bit libraries, must be 1.7 because this program uses 1.7 switch features
Getting the Code for contribution
download from git
1) open up eclipse
2)click help->install new software
3)on the drop down box click all available sites
4)then click on the colobartion catagory and download egit
-note the source code, and Myrlen stuff our not needed
5)restart eclipse
6)click file->import
7a)-Email [email protected] to get your git account added to contributers list
7b)click projects from git
8)paste https url in prompt https://${account}@github.com/dontQQ/GroundCOFE.git
Setting eclipse to use java 1.7
1)click project->properties
2)click add library
3)click jre system library
4)click installed jres
5)click add
6)browse for jre 7
Running From within java
1)click on the edu.ucsb.deepsace package
2)select Main.java
3)Hit the f-11 key on your keyboard
How to pull master
1: reset master last pull(deletes code changes in master)
git reset --hard
2: pull master branch from git
git pull origin master
How to add code
1:pull from master
see pull from master
2:make a new branch for your code
git branch <name_of_branch>
3:switch to that branch
git checkout <name_of_branch>
4:make your changes to that branch
type code into eclipse
5:switch to master
git checkout master
6:pull master
see how to pull master
7:merge branches
git merge <name_of_branch>
7a:if no conflicts then push branch
git push origin master
7b:if it says cant merge do to conflict
git mergetool