A lot of new awesome stuff.

This commit is contained in:
Artem Sapegin
2012-10-12 12:53:13 +04:00
parent 73babe1cd6
commit 6c4d0e8aa2
11 changed files with 998 additions and 144 deletions

9
includes/root.sh Normal file
View File

@ -0,0 +1,9 @@
# Copyright 2009 Daniel Jackoway
# released under the MIT License
# see COPYING for the full text
function gitr {
while [ ! -d .git -a ! -f '.this_is_root' -a `pwd` != "/" ]
do
cd "..";
done
}