-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
101 lines (84 loc) · 3.09 KB
/
faq.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<h2>Frequently Asked Questions:</h2>
If you have any more questions than those that are answered here, please email <a href="mailto:[email protected]">[email protected]</a>
<h3>How to install an Eclipse plug-in?</h3>
<ul>
<li>Go to Help->Install New Software ...</li>
<li>Add either the path to the local plug-in folder that you want to install or the url of the plug-in</li>
<li>Follow the installation dialogue.</li>
<li>Restart Eclipse.</li>
</ul>
See <a href="">this page</a> for a more detailed example.
<h3>How to commit a change?</h3>
<strong>Using RTC SCM:</strong>
<ul>
<li>Open the Pending Changes View.</li>
<li>Create a new ChangeSet by right-clicking the component containing the changes and select ChangeSet.</li>
<li>Drag and drop the changed files in the Changes View into the ChangeSet.</li>
<li>Right-click the ChangeSet and Related Artifacts->Associate Work Item.</li>
<li>Right-click the ChangeSet and select close.</li>
<li>Right-clich the ChangeSet and deliver.</li>
</ul>
<strong>Using eGit:</strong>
<ul>
<li>Select the files that have been changed.</li>
<li>Right click and select commit.</li>
<li>Add a comment of the form "WorkItem: xxx some text" without the "</li>
<li>Commit.</li>
</ul>
<h3>How to create a work item?</h3>
<ul>
<li>In Windows/Linux use Ctlr+n and in Mac Cmd+n.</li>
<li>Type "work item" without the " and select Work Item.</li>
<li>Fill in all Fields.</li>
<li>Save.</li>
</ul>
<h3>How to set a work item as current work?</h3>
Within Eclipse:
<ul>
<li>Open the work item.</li>
<li>Right click on the Work Item icon in the upper left.</li>
<li>Select Set as Current WorkItem</li>
</ul>
Alternatively:
<ul>
<li>Open the work item.</li>
<li>Drag the Work Item icon in the upper left to the </li>
<li>To hte field displaying the current work item (usually in the lower left).</li>
</ul>
<h3>How to link a commit to a work item?</h3>
Using eGit:
<ul>
<li>Add the post-commit git hook to your fork (only needs to be done once).</li>
<li>Make sure that the commit comment starts with "WorkItem: xxx: some comment" (without ") , where xxx is the work item number.</li>
<li>Push you commit to your github repository.</li>
</ul>
Using RTC:
<ul>
<li>Right click the change set.</li>
<li>Go to "Related Artifacts" and add related artifact.</li>s
</ul>
<h3>How to open a work item?</h3>
<strong>Eclipse UI:</strong>
<ul>
<li>Ctrl+n</li>
<li>Select Work Item.</li>
<li>Fill in the mandatory fields.</li>
</ul>
<h3>How to comment on a work item?</h3>
<strong>Eclipse UI:</strong>
<ul>
<li>Open the work item.</li>
<li>Click on the Add Comment link on the lower right.</li>
<li>Write your comment.</li>
<li>Click save.</li>
</ul>
<h3>How to pull changes from forked repository</h2>
In Eclipse:
<ul>
<li>Open the Git Repositories View</li>
<li>Right Click your repository.</li>
<li>Select Fetch from Upstream</li>
</ul>
If you want to know more about github forks see <a href="http://help.github.com/fork-a-repo/">http://help.github.com/fork-a-repo/</a>
<h3>How to configure Mylyn to be unobtrusive?</h3>
see <a href="http://ballroom.segal.uvic.ca/~schadr/astc/guide/index.php">this page</a>