Skip to content

Instantly share code, notes, and snippets.

View brianjgamble's full-sized avatar

Brian Gamble brianjgamble

View GitHub Profile
@brianjgamble
brianjgamble / rebase.sh
Created January 26, 2011 19:38
Script to svn rebase .git folders
#!/bin/sh
## Iterate over the folders ending with .git and rebase each of them
for f in *.git
do
cd $f
echo "About to rebase $f"
git svn rebase
echo `pwd`
cd ..
package payroll;
public class ContractorCalculator extends PayCalculator {
@Override
protected double determinePay(double hours, double rate) {
return hours * rate;
}
}