Git clone writable

From SlackWiki
Revision as of 03:16, 19 June 2020 by Dchmelik (talk | contribs)
Jump to navigation Jump to search
#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 "$@" && find */.git -perm u-w -exec chmod u+w "{}" \;
  else
    command git "$@";
  fi;
}