lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master 38a6c93 12/14: Let git create its own directo


From: Greg Chicares
Subject: [lmi-commits] [lmi] master 38a6c93 12/14: Let git create its own directory
Date: Sat, 25 Apr 2020 17:43:14 -0400 (EDT)

branch: master
commit 38a6c93f55b9a2755eec304644f39a8c27d6bb13
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>

    Let git create its own directory
    
    It is of course possible to create the directory before calling
    'git init':
      mkdir DIR
      chmod g+sw DIR
      chgrp audio DIR
    but 'git init --shared' takes care of everything except GID anyway,
    and it seems simpler to call
      chgrp -R audio DIR
    after 'git init'. The '-R' flag can do no harm, unlike 'chmod -R ...',
    which can have surprising effects.
---
 gwc/share_git2.sh | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/gwc/share_git2.sh b/gwc/share_git2.sh
index d4f13fb..3a5c63f 100755
--- a/gwc/share_git2.sh
+++ b/gwc/share_git2.sh
@@ -38,10 +38,6 @@ sudo --user=pulse true
 
 inited="inited_nonbare"
 
-mkdir "$inited"
-# Need to run 'chmod' because git doesn't create this directory.
-chmod g+sw "$inited"
-
 # The crux of this method is 'git init':
 git init --shared "$inited"
 chgrp -R audio "$inited"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]