Skip to content

Instantly share code, notes, and snippets.

View PrieurBenjamin's full-sized avatar
🤠

Benjamin Prieur PrieurBenjamin

🤠
View GitHub Profile
@davejlong
davejlong / ant-git.xml
Created March 17, 2011 15:30
A simple ant script that will commit and push to a git repo.
<?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}">