Created
March 17, 2011 15:30
-
-
Save davejlong/874521 to your computer and use it in GitHub Desktop.
A simple ant script that will commit and push to a git repo.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<project name="Demo" default="version" basedir="."> | |
<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}"> | |
<arg value="@{command}" /> | |
<args/> | |
</exec> | |
</sequential> | |
</macrodef> | |
<target name="version" description="Commits all changes to version git"> | |
<input message="Commit message" addproperty="commit-message" /> | |
<echo message="Commiting all changes with message ${commit-message}" /> | |
<git command="add"> | |
<args> | |
<arg value="." /> | |
</args> | |
</git> | |
<git command="commit"> | |
<args> | |
<arg value="-am ${commit-message}" /> | |
</args> | |
</git> | |
<git command="push" /> | |
</target> | |
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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}"> | |
<arg value="@{command}" /> | |
<args/> | |
</exec> | |
</sequential> | |
</macrodef> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<target name="version" description="Commits all changes to version git"> | |
<input message="Commit message" addproperty="commit-message" /> | |
<echo message="Commiting all changes with message ${commit-message}" /> | |
<git command="add"> | |
<args> | |
<arg value="." /> | |
</args> | |
</git> | |
<git command="commit"> | |
<args> | |
<arg value="-am ${commit-message}" /> | |
</args> | |
</git> | |
<git command="push" /> | |
</target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A script working perfectly at the first try. Nice work !