-
Notifications
You must be signed in to change notification settings - Fork 15
/
git-ant.xml
391 lines (349 loc) · 10.8 KB
/
git-ant.xml
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
<project name="Ant Build Script with Git Support">
<!--
Start user specific the global configuration properties.
-->
<property file="project.properties" />
<property file="gitRepros.properties" />
<!--
End user specific the global configuration properties.
-->
<!--
Start Git Macros
-->
<macrodef name="git">
<attribute name="command" />
<attribute name="options" default="" />
<attribute name="dir" default="" />
<attribute name="failerror" default="false" />
<element name="args" optional="true" />
<sequential>
<echo message="git dir @{dir}" />
<echo message="git @{command}" />
<exec executable="git" dir="@{dir}" failonerror="@{failerror}">
<arg line="@{command} @{options}" />
<args />
</exec>
</sequential>
</macrodef>
<macrodef name="git-branch">
<attribute name="branch" />
<attribute name="options" default="" />
<attribute name="dir" />
<attribute name="failerror" default="false" />
<sequential>
<git command="branch" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{branch}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-push">
<attribute name="remote" default="origin"/>
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="localRef" />
<attribute name="remoteRef" />
<attribute name="failerror" default="false" />
<sequential>
<git command="push" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{remote}" />
<arg value="@{localRef}:@{remoteRef}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-push-to-branch">
<attribute name="branch" />
<attribute name="remoteRepositoryName" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="push" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{remoteRepositoryName}" />
<arg value="@{branch}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-add-remote">
<attribute name="repository" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="rem" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{repository}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-submodule-add">
<attribute name="repository" />
<attribute name="destination" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="ads" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{repository}" />
<arg value="${submodule.dir}/@{destination}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-commit-with-message">
<attribute name="message" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="commit" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="-m @{message}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-checkout-local">
<attribute name="branch" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="checkout" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{branch}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-checkout">
<attribute name="branch" />
<attribute name="targetbranch" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="checkout" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{branch}" />
<arg value="-b@{targetbranch}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-merge-branch">
<attribute name="branchFrom" />
<attribute name="branchInTo" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="checkout" dir="@{dir}" failerror="@{failerror}" >
<args>
<arg value="@{branchInTo}" />
</args>
</git>
<git command="merge" dir="@{dir}" options="@{options}" >
<args>
<arg value="@{branchFrom}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-add">
<attribute name="file" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="add" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{file}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-tag">
<attribute name="tagName" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="tag" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{tagName}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-clone">
<attribute name="repository" />
<attribute name="dest" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="clone" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{repository}" />
<arg value="@{dest}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-log">
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="log" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="--stat" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-fetch">
<attribute name="remote" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="fetch" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{remote}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-pull">
<attribute name="remote" />
<attribute name="dir" />
<attribute name="options" default="" />
<attribute name="failerror" default="false" />
<sequential>
<git command="pull" dir="@{dir}" options="@{options}" failerror="@{failerror}" >
<args>
<arg value="@{remote}" />
</args>
</git>
</sequential>
</macrodef>
<!--
End Git Macros
-->
<!--
Start Tasks
-->
<target name="[General] Init Project">
<copy file="${template.dir}/LICENSE.md" tofile="${project.root.dir}/LICENSE.md" overwrite="${overwrite.files}">
<filterchain>
<replacetokens>
<token key="author" value="${author.name}" />
<token key="year" value="${year}" />
</replacetokens>
</filterchain>
<antcall target="[Git] Init Git" />
<antcall target="[Git] Add all files" />
</copy>
<copy file="${template.dir}/.gitignore" tofile="${project.root.dir}/.gitignore" overwrite="${overwrite.files}" />
<copy file="${template.dir}/README.md" tofile="${project.root.dir}/README.md" overwrite="${overwrite.files}">
<filterchain>
<replacetokens>
<token key="projectName" value="${project.name}" />
<token key="author" value="${author.name}" />
<token key="year" value="${year}" />
<token key="eMail" value="${author.email}" />
<token key="homepage" value="${author.homepage}" />
<token key="twitter" value="${author.twitter}" />
</replacetokens>
</filterchain>
</copy>
</target>
<target name="[General] Big Master LittleBuddha Init :D" depends="[General] Init Project, [Robotlegs] Init">
<git-submodule-add repository="${AS3.coreLib}" destination="as3Core" />
<git-submodule-add repository="${AS3.fcss}" destination="fcss" />
<git-submodule-add repository="${AS3.httpRESTfulClient}" destination="restClient" />
<antcall target="[Git] Initial commit to GitHub" />
</target>
<target name="[Robotlegs] Init">
<git-submodule-add repository="${AS3.robotlegs}" destination="robo" />
<git-submodule-add repository="${AS3.swiftSuspenders}" destination="swift" />
</target>
<target name="[Git] Init Git">
<git command="init" />
</target>
<target name="[Git] Add all files">
<git-add file="." />
</target>
<target name="[Git] Commit all with message">
<input message="Type your message!" addproperty="commitMsg" defaultvalue="Please insert here your commit message!" />
<git-commit-with-message message="${commitMsg}" />
</target>
<target name="[Git] Initial commit to GitHub" depends="[Git] Add all files">
<git-add-remote repository="${git.repository}" />
<git command="pom" />
</target>
<target name="[Git] Push to Branch" depends="[Git] Add all files, [Git] Commit all with message">
<input message="Branch Name" addproperty="branch" defaultvalue="master" />
<git-push-to-branch remoterepositoryname="origin" branch="${branch}" />
</target>
<target name="[Git] Checkout Branch">
<input message="Branch Name" addproperty="branch" defaultvalue="NewBranch" />
<git-checkout branch="${branch}" />
</target>
<target name="[Git] Merge Branches">
<input message="From Branch" addproperty="fromBranch" />
<input message="Into Branch" addproperty="intoBranch" />
<git-merge-branch branchfrom="${fromBranch}" branchinto="${intoBranch}" />
</target>
<!--target name="[Git] Pull">
<input message="Pull From Branch" addproperty="fromBranch" />
<git-pull frombranch="${fromBranch}" />
</target-->
<target name="[Git] Show Log">
<git-log />
</target>
<target name="[Git] Tag">
<input message="Tag Name" addproperty="tagName" />
<git-tag tagname="${tagName}" />
</target>
<target name="[Git] Show Branches">
<git command="branch" />
</target>
<target name="[Git] Show Status">
<git command="status" />
</target>
<target name="[Git] Delete Branch">
<input message="Branch Name" addproperty="branch" />
<git-branch branch="${branch}" options="-d" />
</target>
<target name="[Git] Cleanup Repository">
<git command="gc" options="--prune" />
</target>
<target name="[Git] Search">
<input message="Search" addproperty="search" />
<git command="grep" options="'${search}'" />
</target>
<target name="[Git] Show Diff">
<git command="diff" />
</target>
<target name="[Git] Show Help of a Command">
<input message="Command for showing help" addproperty="helpCMD" />
<git command="help">
<args>
<arg value="${helpCMD}" />
</args>
</git>
</target>
<!--
End Tasks
-->
</project>