forked from OpenGamma/OG-Platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-macros.xml
106 lines (96 loc) · 3.03 KB
/
git-macros.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
<project name="git-macros" xmlns:ivy="antlib:org.apache.ivy.ant">
<macrodef name="git">
<attribute name="command" />
<attribute name="dir" default="" />
<element name="args" optional="true" />
<sequential>
<echo message="git @{command}" />
<exec executable="git" dir="@{dir}" osfamily="unix" failonerror="true">
<arg value="@{command}" />
<args />
</exec>
<!-- On Windows, you want to execute git.cmd, not git.exe. -->
<exec executable="cmd" dir="@{dir}" osfamily="windows">
<arg value="/c" />
<arg value="git" />
<arg value="@{command}" />
<args />
</exec>
</sequential>
</macrodef>
<macrodef name="git-clone">
<attribute name="repository" />
<attribute name="dest" />
<sequential>
<git command="clone">
<args>
<arg value="@{repository}" />
<arg value="@{dest}" />
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-pull">
<attribute name="dest" />
<element name="args" optional="true" implicit="yes" />
<sequential>
<echo message="pulling @{dest} ------------------------------" />
<git command="pull" dir="@{dest}">
<args />
</git>
</sequential>
</macrodef>
<macrodef name="git-clone-pull">
<attribute name="repository" />
<attribute name="dest" />
<sequential>
<echo message="git clone-or-pull @{repository}" />
<subant antfile="git-tasks.xml" failonerror="true" target="git-repo" buildpath="${basedir}">
<property name="repository" value="@{repository}" />
<property name="dest" value="@{dest}" />
</subant>
</sequential>
</macrodef>
<macrodef name="git-status">
<attribute name="dest" />
<attribute name="displayName" />
<sequential>
<echo message="getting status for @{displayName} ---------------------------" />
<git command="status" dir="@{dest}"/>
</sequential>
</macrodef>
<macrodef name="git-fetch">
<attribute name="dest" />
<sequential>
<echo message="fetching @{dest} ------------------------------" />
<git command="fetch" dir="@{dest}"/>
</sequential>
</macrodef>
<macrodef name="git-checkout">
<attribute name="dest" />
<attribute name="branch" />
<attribute name="displayname" />
<sequential>
<echo message="Checking out @{branch} for @{displayname} --------------------------" />
<git command="checkout" dir="@{dest}">
<args>
<arg value="@{branch}"/>
</args>
</git>
</sequential>
</macrodef>
<macrodef name="git-branch-and-checkout">
<attribute name="dest" />
<attribute name="branch" />
<attribute name="displayname" />
<sequential>
<echo message="Checking out @{branch} for @{displayname} --------------------------" />
<git command="checkout" dir="@{dest}">
<args>
<arg value="-b"/>
<arg value="@{branch}"/>
</args>
</git>
</sequential>
</macrodef>
</project>