Git clone writable
#Bash function to make git clones writable (annoyingly, if you clone repository, some files are non-user-writable... which after compiling dangerously tempts 'sudo rm -rf!') git() { if [ $1 = "clone" ]; then command git "$@" && chmod -R u+w */.git; #you may prefer # command git "$@" && chmod -R rm -rf */.git; else command git "$@"; fi; }