This file contains hidden or 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
#!/bin/bash | |
# This script will look into the GIT commit log of the current directory, backwards since the branch | |
# from master, searching for references to JIRA issues of a set of known projects. | |
# It will then print URLs to all mentioned JIRA issues. | |
# Optionally (uncommnent one line) it could open all relevant issues in different tabs of a browser: this is useful | |
# in my workflow as I often want to comment and/or close the issues when merging work in upstream. | |
# | |
# Released under the WTFPL license version 2 http://sam.zoy.org/wtfpl/ | |
# | |
# Copyright (c) 2011 Sanne Grinovero |
This file contains hidden or 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
#!/bin/bash | |
# Clones your existing repo and run the maven tests off this clone | |
# Tests are run on the the current branch at the time of cloning | |
# | |
# Note that you can work on the next bug while this is going on as | |
# tests are run off a cloned repo. | |
# | |
# $ build.sh | |
# runs 'maven clean install' | |
# |