Tutorial by Examples

<macrodef name = "git"> <attribute name = "command" /> <attribute name = "dir" default = "" /> <element name = "args" optional = "true" /> <sequential> <echo message = "git ...
<git command="clone"> <args> <arg value = "-v" /> <arg value = "git@YOURGITURL:GITUSER/GITREPO" /> <arg value = "repo" /> </args> </git>
<git command = "pull" dir = "repository_path" />
<input message="Commit message" addproperty="commit-message" /> <git command="add"> <args> <arg value="." /> </args> </git> <git command="commit"> <args> ...

Page 1 of 1