User Tools

Site Tools


computing:gitserver

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
computing:gitserver [2019/11/09 23:06] oemb1905computing:gitserver [2019/11/09 23:08] (current) oemb1905
Line 80: Line 80:
   git push   git push
  
 +File and directory permission recommendations for git repository contents:
 +
 +  find .git -type d | xargs chmod 755
 +  find .git/objects -type f | xargs chmod 444
 +  find .git -type f | grep -v /objects/ | xargs chmod 644
 +  
 +Set the default editor
 +
 +  git config --global core.editor "nano"
  
 This tutorial is a designated "Invariant Section" of the "Technotronic" section of Haack's Wiki as described on the [[https://jonathanhaack.com/dokuwiki/doku.php?id=start|Start Page]]. This tutorial is a designated "Invariant Section" of the "Technotronic" section of Haack's Wiki as described on the [[https://jonathanhaack.com/dokuwiki/doku.php?id=start|Start Page]].
computing/gitserver.txt · Last modified: 2019/11/09 23:08 by oemb1905