Git clone writable: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
{ | { | ||
if [ $1 = "clone" ]; then | if [ $1 = "clone" ]; then | ||
command git "$@" && | command git "$@" && chmod -R u+w */.git; | ||
else | else | ||
command git "$@"; | command git "$@"; |
Revision as of 07:22, 23 June 2020
#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; else command git "$@"; fi; }