diff options
author | Wolfgang Müller | 2022-03-03 15:15:19 +0100 |
---|---|---|
committer | Wolfgang Müller | 2022-03-03 15:15:19 +0100 |
commit | 92ba675e4bffaca19af1d354783c33b0d9dca069 (patch) | |
tree | 08e1d05dc899eb85829c555b4949ddaea79ac553 | |
parent | 65e9587af04fcae23c9d0cf37f185b7555435256 (diff) | |
download | git-helpers-92ba675e4bffaca19af1d354783c33b0d9dca069.tar.gz |
Rename git-init-shared(1) to git-init-acl(1)
We have always felt that the name of this program was too close to the
invocation of 'git init --shared' which does something similar. Make it
clear in the name that we're working with POSIX ACLs instead of normal
permission sets as 'git init --shared' does.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | git-init-acl (renamed from git-init-shared) | 2 | ||||
-rw-r--r-- | git-init-acl.1 (renamed from git-init-shared.1) | 6 |
4 files changed, 8 insertions, 8 deletions
@@ -1,7 +1,7 @@ PREFIX ?= /usr/local -install: git-init-shared git-init-shared.1 git-package git-package.1 git-sign-for-cgit git-sign-for-cgit.1 - install -D -m 755 -t '${DESTDIR}${PREFIX}/bin' git-init-shared git-package git-sign-for-cgit - install -D -m 644 -t '${DESTDIR}${PREFIX}/share/man/man1' git-init-shared.1 git-package.1 git-sign-for-cgit.1 +install: git-init-acl git-init-acl.1 git-package git-package.1 git-sign-for-cgit git-sign-for-cgit.1 + install -D -m 755 -t '${DESTDIR}${PREFIX}/bin' git-init-acl git-package git-sign-for-cgit + install -D -m 644 -t '${DESTDIR}${PREFIX}/share/man/man1' git-init-acl.1 git-package.1 git-sign-for-cgit.1 .PHONY: install @@ -6,7 +6,7 @@ personal use. ## Scripts -- [`git-init-shared(1)`](git-init-shared.1): Initialize a bare repo that multiple users have write access +- [`git-init-acl(1)`](git-init-acl.1): Initialize a bare repo that multiple users have write access to. This uses `setfacl(1)` and thereby relies on ACL support. - [`git-package(1)`](git-package.1): Create an archive of a named tree suitable for distribution. - [`git-sign-for-cgit(1)`](git-sign-for-cgit.1): Generate a snapshot and store its [signify](https://www.openbsd.org/papers/bsdcan-signify.html) signature for diff --git a/git-init-shared b/git-init-acl index b0ffac5..50950b5 100755 --- a/git-init-shared +++ b/git-init-acl @@ -3,7 +3,7 @@ set -e usage() { - printf "usage: git init-shared directory [user...]\n" >&2 + printf "usage: git init-acl directory [user...]\n" >&2 exit 1 } diff --git a/git-init-shared.1 b/git-init-acl.1 index dfd9ffa..2bf8b12 100644 --- a/git-init-shared.1 +++ b/git-init-acl.1 @@ -1,11 +1,11 @@ .Dd July 19, 2021 -.Dt GIT-INIT-SHARED 1 +.Dt GIT-INIT-ACL 1 .Os .Sh NAME -.Nm git-init-shared +.Nm git-init-acl .Nd create and share a git repository amongst multiple users .Sh SYNOPSIS -.Nm git init-shared +.Nm git init-acl .Ar directory .Op Ar user... .Sh DESCRIPTION |