git clone https://github.com/apache/flume.git flume-local cd flume-local git checkout trunk
for a particular release:
git clone https://github.com/apache/flume.git flume-local cd flume-local git checkout <RELEASE>
git diff --no-prefix > /Path/to/your/patch/JIRA-ID.patch
git stash (will save your branch and reset the working directory)
Attach the JIRA-ID.patch to the Jira
Open a review request at https://reviews.apache.org against flume-git
Post the review link into the Jira
Write Notes into the Jira, regarding your work
Exception in thread "MainThread" java.lang.OutOfMemoryError: PermGen space
Maven2 Issue, start your build with:
MAVEN_OPTS="-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m" mvn package -DskipTests
Jira: FlUME-1256