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
Next revision
Previous revision
Next revisionBoth sides next revision
computing:gitserver [2019/02/01 21:00] oemb1905computing:gitserver [2019/11/09 23:03] oemb1905
Line 3: Line 3:
   * **Jonathan Haack**   * **Jonathan Haack**
   * **Haack's Networking**   * **Haack's Networking**
-  * **netcmnd@jonathanhaack.com** +  * **netcmnd@jonathanhaack.com**  
  
 ------------------------------------------- -------------------------------------------
Line 50: Line 50:
   git remote set-url origin ssh://user@10.28.88.2:/media/user/Store/Lion/lion.git   git remote set-url origin ssh://user@10.28.88.2:/media/user/Store/Lion/lion.git
   git remote set-url origin ssh://user@10.28.88.2:46787/media/user/Store/Lion/lion.git   git remote set-url origin ssh://user@10.28.88.2:46787/media/user/Store/Lion/lion.git
 +  git remote set-url origin ssh://user@10.28.28.2:/home/Lion/lion.git
      
 Of course, to clone the repository: Of course, to clone the repository:
Line 58: Line 59:
  
   git:x:1001:1001:,,,:/var/opt/gitlab:/bin/sh   git:x:1001:1001:,,,:/var/opt/gitlab:/bin/sh
 +  
 +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
 +  
 +Make nano 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]].
  
- --- //[[netcmnd@jonathanhaack.com|oemb1905]] 2019/01/13 12:24// 
  
  
 + --- //[[oemb1905@jonathanhaack.com|oemb1905]] 2019/11/09 16:00//
computing/gitserver.txt · Last modified: 2019/11/09 23:08 by oemb1905