Skip to content

Instantly share code, notes, and snippets.

View ravenscroftj's full-sized avatar

James Ravenscroft ravenscroftj

View GitHub Profile
for i in range(100000000):
print(i)
@ravenscroftj
ravenscroftj / initgroupgit.sh
Created January 20, 2012 10:11
Initialise a shared git repository in BASH
#!/bin/bash
if [ $# -lt 2 ]
then
echo "Usage: $0 <path/to/repository> <GitGroupName>"
exit 0
fi
#make the directory
mkdir $1