From 34feece7f514207ac129da60d90d2175d5a7951e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 5 Sep 2012 12:57:50 -0300 Subject: Mirror a remote repo --- git-shell-commands/mirror | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 git-shell-commands/mirror (limited to 'git-shell-commands') diff --git a/git-shell-commands/mirror b/git-shell-commands/mirror new file mode 100755 index 0000000..2bf9a49 --- /dev/null +++ b/git-shell-commands/mirror @@ -0,0 +1,11 @@ +#!/bin/sh +# Mirrors a repository +# ssh git@host mirror git://url/repo.git + +set -E + +repo="`basename "$1"`.git" + +git clone --mirror $1 $repo + +exit $? -- cgit v1.2.3-2-g168b From e3031ab2c30e2fd97aaa0b3c93b6342bb7e7db85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 5 Sep 2012 13:02:02 -0300 Subject: Allow multiple mirrors, remove extra .git$ --- git-shell-commands/mirror | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/mirror b/git-shell-commands/mirror index 2bf9a49..6a2c254 100755 --- a/git-shell-commands/mirror +++ b/git-shell-commands/mirror @@ -4,8 +4,8 @@ set -E -repo="`basename "$1"`.git" - -git clone --mirror $1 $repo +for _m in $@; do + git clone --mirror $_m +done exit $? -- cgit v1.2.3-2-g168b From a62a275f25a53c675dd3e815463919bd0930a066 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 5 Sep 2012 13:06:11 -0300 Subject: The logic was backwards :| --- git-shell-commands/change-description | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index 437833c..120b1cd 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -5,8 +5,7 @@ set -E repo=$1; shift -description="$@" -echo "${repo}.git/${description}" > description +echo "${@}" > ${repo}.git/description exit $? -- cgit v1.2.3-2-g168b From c562e291c0adca7cb7dd2e1ce5ac26e1cd405603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Sat, 8 Sep 2012 20:00:33 -0300 Subject: Exit on error --- git-shell-commands/change-description | 2 +- git-shell-commands/create-bare-repo | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index 120b1cd..d29eaa8 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -2,7 +2,7 @@ # Allows users to change project description # $ ssh git@host change-description repo "description" -set -E +set -e repo=$1; shift diff --git a/git-shell-commands/create-bare-repo b/git-shell-commands/create-bare-repo index 14a640b..b0174e2 100755 --- a/git-shell-commands/create-bare-repo +++ b/git-shell-commands/create-bare-repo @@ -2,15 +2,15 @@ # Allows users to create repo.git # $ ssh git@host create-bare-repo repo1 repo2 ... -set -E +set -e for i in $@; do # Cleanup names - i="`echo "$i" | sed "s/[^a-z0-9\.\-\_]//gi"`" + repo="`echo "$i" | sed "s/[^a-z0-9\.\-\_]//gi"`" - if [ -z "$i" ]; then continue; fi + if [ -z "$repo" ]; then continue; fi - mkdir "$i".git - pushd "$i".git + mkdir "$repo".git + pushd "$repo".git git init --bare done -- cgit v1.2.3-2-g168b From 791d3e1553d0a8b4103bb499fce26688b8cf217a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Sat, 8 Sep 2012 20:11:43 -0300 Subject: Retrieve help --- git-shell-commands/change-description | 5 +++-- git-shell-commands/create-bare-repo | 5 +++-- git-shell-commands/help | 12 ++++++++++++ git-shell-commands/mirror | 5 +++-- 4 files changed, 21 insertions(+), 6 deletions(-) create mode 100755 git-shell-commands/help (limited to 'git-shell-commands') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index d29eaa8..c8abdab 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -1,6 +1,7 @@ #!/bin/sh -# Allows users to change project description -# $ ssh git@host change-description repo "description" +# * change-description +# Allows users to change project description +# ssh git@host change-description repo "description" set -e diff --git a/git-shell-commands/create-bare-repo b/git-shell-commands/create-bare-repo index b0174e2..ec98b33 100755 --- a/git-shell-commands/create-bare-repo +++ b/git-shell-commands/create-bare-repo @@ -1,6 +1,7 @@ #!/bin/sh -# Allows users to create repo.git -# $ ssh git@host create-bare-repo repo1 repo2 ... +# * create-bare-repo +# Allows users to create repo.git +# ssh git@host create-bare-repo repo1 repo2 ... set -e diff --git a/git-shell-commands/help b/git-shell-commands/help new file mode 100755 index 0000000..45f0bd6 --- /dev/null +++ b/git-shell-commands/help @@ -0,0 +1,12 @@ +#!/bin/sh +# * help +# Gets available commands +# ssh git@host help + +set -e + +# Gets three lines from every git-shell-command +for c in `dirname $0`/*; do + head -q -n4 $c | tail -n3 | sed "s/^..//" + echo +done diff --git a/git-shell-commands/mirror b/git-shell-commands/mirror index 6a2c254..c634b9e 100755 --- a/git-shell-commands/mirror +++ b/git-shell-commands/mirror @@ -1,6 +1,7 @@ #!/bin/sh -# Mirrors a repository -# ssh git@host mirror git://url/repo.git +# * mirror +# Mirrors a repository +# ssh git@host mirror git://url/repo.git set -E -- cgit v1.2.3-2-g168b From 2a5839d898d5f029e7a8c0c276be9bac822e480d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Sun, 9 Sep 2012 17:06:10 -0300 Subject: Allow dashes on repo names --- git-shell-commands/create-bare-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/create-bare-repo b/git-shell-commands/create-bare-repo index ec98b33..6c83bc6 100755 --- a/git-shell-commands/create-bare-repo +++ b/git-shell-commands/create-bare-repo @@ -7,7 +7,7 @@ set -e for i in $@; do # Cleanup names - repo="`echo "$i" | sed "s/[^a-z0-9\.\-\_]//gi"`" + repo="`echo "$i" | sed "s/[^a-z0-9\._-]//gi"`" if [ -z "$repo" ]; then continue; fi -- cgit v1.2.3-2-g168b From 45ed11f638444386d413266149edec03fef3814e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Mon, 10 Dec 2012 19:40:33 -0300 Subject: Work with mirrors --- git-shell-commands/fetch-mirrors | 20 ++++++++++++++++++++ git-shell-commands/mirrors | 11 +++++++++++ 2 files changed, 31 insertions(+) create mode 100755 git-shell-commands/fetch-mirrors create mode 100755 git-shell-commands/mirrors (limited to 'git-shell-commands') diff --git a/git-shell-commands/fetch-mirrors b/git-shell-commands/fetch-mirrors new file mode 100755 index 0000000..62ed9f1 --- /dev/null +++ b/git-shell-commands/fetch-mirrors @@ -0,0 +1,20 @@ +#!/bin/sh +# * fetch-mirrors +# Updates mirrors created with `mirror` +# ssh git@host fetch-mirrors + +set -e + +# Find all mirrors +mirrors | \ + while read _mirror; do + + pushd "$_mirror" >/dev/null + + git fetch + + popd >dev/null + +done + +exit $? diff --git a/git-shell-commands/mirrors b/git-shell-commands/mirrors new file mode 100755 index 0000000..d0ae3f4 --- /dev/null +++ b/git-shell-commands/mirrors @@ -0,0 +1,11 @@ +#!/bin/sh +# * mirrors +# Prints all mirrored repos +# ssh git@host mirrors + +set -e + +# Find all mirrors +find *.git -maxdepth 1 -iname config -print0 | \ + xargs -0 grep -l 'mirror = true' | \ + sed 's,/config$,,' -- cgit v1.2.3-2-g168b From 7d08c5f2a9f38c9d8780deaa27a5a8769f839eae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Mon, 10 Dec 2012 19:44:53 -0300 Subject: Point to the full mirrors path --- git-shell-commands/fetch-mirrors | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/fetch-mirrors b/git-shell-commands/fetch-mirrors index 62ed9f1..1a24215 100755 --- a/git-shell-commands/fetch-mirrors +++ b/git-shell-commands/fetch-mirrors @@ -6,7 +6,7 @@ set -e # Find all mirrors -mirrors | \ +~/git-shell-commands/mirrors | \ while read _mirror; do pushd "$_mirror" >/dev/null -- cgit v1.2.3-2-g168b From 54887dea107480384a9031d778f2891fe46a7b86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Mon, 10 Dec 2012 19:45:34 -0300 Subject: Typo --- git-shell-commands/fetch-mirrors | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/fetch-mirrors b/git-shell-commands/fetch-mirrors index 1a24215..b2a1350 100755 --- a/git-shell-commands/fetch-mirrors +++ b/git-shell-commands/fetch-mirrors @@ -13,7 +13,7 @@ set -e git fetch - popd >dev/null + popd >/dev/null done -- cgit v1.2.3-2-g168b From d00c7af7a28fa9d061a00b3e9af6d31309d0ad7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Mon, 10 Dec 2012 19:57:25 -0300 Subject: Update mirror according to StackOverflow http://stackoverflow.com/questions/6150188/how-to-update-a-git-clone-mirror --- git-shell-commands/fetch-mirrors | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/fetch-mirrors b/git-shell-commands/fetch-mirrors index b2a1350..6268bf9 100755 --- a/git-shell-commands/fetch-mirrors +++ b/git-shell-commands/fetch-mirrors @@ -11,7 +11,7 @@ set -e pushd "$_mirror" >/dev/null - git fetch + git remote update popd >/dev/null -- cgit v1.2.3-2-g168b From 2f20803b079f39bc97e4b64a4c78aa58e22a8217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 17 Apr 2013 16:33:18 -0300 Subject: Support for installing hooks --- git-shell-commands/hook-install | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 git-shell-commands/hook-install (limited to 'git-shell-commands') diff --git a/git-shell-commands/hook-install b/git-shell-commands/hook-install new file mode 100644 index 0000000..482a915 --- /dev/null +++ b/git-shell-commands/hook-install @@ -0,0 +1,25 @@ +#!/bin/sh +# * hook-install +# Installs a hook on a repo +# ssh git@host hook-install hook script repo [alt-dir] + +set -e + +hook="${1}" +script="${HOME}/.ssh/git-hooks/${2}" +repo="${HOME}/${3}" +clone="${4:-${repo}}" + +# Tests +test -f "${repo}/HEAD" +test -f "${clone}/.git/HEAD" +test -f "${repo}/hooks/${hook_name}" + +# Installs the generic hook that runs scripts +test -f "${repo}/hooks/${hook}" || \ + ln -s "${HOME}/.ssh/git-hooks/generic" "${repo}/hooks/${hook}" + +# Install the hook on the repo +git config --local --add "hacking.hooks.${hook}.${2}" "${clone}" + +exit $? -- cgit v1.2.3-2-g168b From 901c458d2ca66d5bbc95e14aaaffd1ff51bf57c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 17 Apr 2013 16:44:39 -0300 Subject: Should be executable no? --- git-shell-commands/hook-install | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 git-shell-commands/hook-install (limited to 'git-shell-commands') diff --git a/git-shell-commands/hook-install b/git-shell-commands/hook-install old mode 100644 new mode 100755 -- cgit v1.2.3-2-g168b From d783097e88cc4a6e1738d20f83ffafde1c49d2a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 17 Apr 2013 16:47:28 -0300 Subject: Residual test --- git-shell-commands/hook-install | 1 - 1 file changed, 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/hook-install b/git-shell-commands/hook-install index 482a915..afc4e5d 100755 --- a/git-shell-commands/hook-install +++ b/git-shell-commands/hook-install @@ -13,7 +13,6 @@ clone="${4:-${repo}}" # Tests test -f "${repo}/HEAD" test -f "${clone}/.git/HEAD" -test -f "${repo}/hooks/${hook_name}" # Installs the generic hook that runs scripts test -f "${repo}/hooks/${hook}" || \ -- cgit v1.2.3-2-g168b From 01f98e0ead7047c1574e3d353c9347db8dd70481 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 17 Apr 2013 17:14:47 -0300 Subject: It works\! --- git-shell-commands/hook-install | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/hook-install b/git-shell-commands/hook-install index afc4e5d..cfd4962 100755 --- a/git-shell-commands/hook-install +++ b/git-shell-commands/hook-install @@ -15,10 +15,9 @@ test -f "${repo}/HEAD" test -f "${clone}/.git/HEAD" # Installs the generic hook that runs scripts -test -f "${repo}/hooks/${hook}" || \ - ln -s "${HOME}/.ssh/git-hooks/generic" "${repo}/hooks/${hook}" +test -f "${repo}/hooks/${hook}" || ln -s "${HOME}/.ssh/git-hooks/generic" "${repo}/hooks/${hook}" # Install the hook on the repo -git config --local --add "hacking.hooks.${hook}.${2}" "${clone}" +git config -f "${repo}/config" --add "hacking.hooks.${hook}.${2}" "${clone}" exit $? -- cgit v1.2.3-2-g168b From 8b9cc4cc3f034fc3f23440c56e19a0d801b5482e Mon Sep 17 00:00:00 2001 From: Ernesto Bazzano Date: Wed, 17 Apr 2013 20:27:37 -0300 Subject: en castillo --- git-shell-commands/fetch-mirrors | 2 +- git-shell-commands/help | 2 +- git-shell-commands/hook-install | 2 +- git-shell-commands/mirror | 2 +- git-shell-commands/mirrors | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/fetch-mirrors b/git-shell-commands/fetch-mirrors index 6268bf9..a9442ba 100755 --- a/git-shell-commands/fetch-mirrors +++ b/git-shell-commands/fetch-mirrors @@ -1,6 +1,6 @@ #!/bin/sh # * fetch-mirrors -# Updates mirrors created with `mirror` +# Actualiza el `mirrors` (espejos) creados con `mirror` # ssh git@host fetch-mirrors set -e diff --git a/git-shell-commands/help b/git-shell-commands/help index 45f0bd6..e707df8 100755 --- a/git-shell-commands/help +++ b/git-shell-commands/help @@ -1,6 +1,6 @@ #!/bin/sh # * help -# Gets available commands +# Obtiene los comando habilitados # ssh git@host help set -e diff --git a/git-shell-commands/hook-install b/git-shell-commands/hook-install index cfd4962..08a0340 100755 --- a/git-shell-commands/hook-install +++ b/git-shell-commands/hook-install @@ -1,6 +1,6 @@ #!/bin/sh # * hook-install -# Installs a hook on a repo +# Instala un hook en un repo # ssh git@host hook-install hook script repo [alt-dir] set -e diff --git a/git-shell-commands/mirror b/git-shell-commands/mirror index c634b9e..212687e 100755 --- a/git-shell-commands/mirror +++ b/git-shell-commands/mirror @@ -1,6 +1,6 @@ #!/bin/sh # * mirror -# Mirrors a repository +# Espeja un repositorio # ssh git@host mirror git://url/repo.git set -E diff --git a/git-shell-commands/mirrors b/git-shell-commands/mirrors index d0ae3f4..d1301a8 100755 --- a/git-shell-commands/mirrors +++ b/git-shell-commands/mirrors @@ -1,6 +1,6 @@ #!/bin/sh # * mirrors -# Prints all mirrored repos +# Muestra todos los repositorios espejos (mirror) # ssh git@host mirrors set -e -- cgit v1.2.3-2-g168b From 1a5c75ab9e3540535109fe3be058be298514ce10 Mon Sep 17 00:00:00 2001 From: Ernesto Bazzano Date: Wed, 17 Apr 2013 20:33:31 -0300 Subject: traduccion prelimiar de los hackings --- git-shell-commands/change-description | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index c8abdab..a4cb197 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -1,6 +1,6 @@ #!/bin/sh # * change-description -# Allows users to change project description +# Cambia la descripcion del projecto, necesita archivo description en el proyecto # ssh git@host change-description repo "description" set -e -- cgit v1.2.3-2-g168b From e9fccc7c9374c0129159282f0c7f4619a390e8a2 Mon Sep 17 00:00:00 2001 From: Mauricio Pasquier Juan Date: Tue, 10 Sep 2013 21:22:46 -0300 Subject: command to delete repositories --- git-shell-commands/delete-repo | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 git-shell-commands/delete-repo (limited to 'git-shell-commands') diff --git a/git-shell-commands/delete-repo b/git-shell-commands/delete-repo new file mode 100755 index 0000000..8349308 --- /dev/null +++ b/git-shell-commands/delete-repo @@ -0,0 +1,13 @@ +#!/bin/sh +# * delete-repo +# Allows users to delete repositories permanently +# ssh git@host delete-repo repo1 repo2 ... + +set -e + +for i in $@; do + if [ -z "$repo" ]; then continue; fi + + # lo and behold absolute horror + rm -rf "$repo".git +done -- cgit v1.2.3-2-g168b From af6871f6f4174f254e0ad6f00ccdaed9e68e4cb5 Mon Sep 17 00:00:00 2001 From: Mauricio Pasquier Juan Date: Wed, 11 Sep 2013 00:45:41 -0300 Subject: Change gitweb's repo owner --- git-shell-commands/change-owner | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 git-shell-commands/change-owner (limited to 'git-shell-commands') diff --git a/git-shell-commands/change-owner b/git-shell-commands/change-owner new file mode 100755 index 0000000..41bf22b --- /dev/null +++ b/git-shell-commands/change-owner @@ -0,0 +1,12 @@ +#!/bin/sh +# * change-owner +# Define quiƩn manda +# ssh git@host change-owner repo "Hacklab" + +set -e + +repo=$1; shift + +git config -f "${repo}/config" "gitweb.owner" "${@}" + +exit $? -- cgit v1.2.3-2-g168b From 56bbf899a62e6ebf33a4c2dd2b1b1bd7e1b6da72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 11 Sep 2013 01:14:04 -0300 Subject: The var is repo --- git-shell-commands/delete-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/delete-repo b/git-shell-commands/delete-repo index 8349308..5731272 100755 --- a/git-shell-commands/delete-repo +++ b/git-shell-commands/delete-repo @@ -5,7 +5,7 @@ set -e -for i in $@; do +for repo in $@; do if [ -z "$repo" ]; then continue; fi # lo and behold absolute horror -- cgit v1.2.3-2-g168b From 977be1ea61943917b9def025d59b8ef493810452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 11 Sep 2013 01:19:13 -0300 Subject: test is nicer --- git-shell-commands/delete-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/delete-repo b/git-shell-commands/delete-repo index 5731272..1e4350e 100755 --- a/git-shell-commands/delete-repo +++ b/git-shell-commands/delete-repo @@ -6,7 +6,7 @@ set -e for repo in $@; do - if [ -z "$repo" ]; then continue; fi + test ! -d "$repo" && continue # lo and behold absolute horror rm -rf "$repo".git -- cgit v1.2.3-2-g168b From e731c2a87859cb97aa091b11589c63a6b7f5a12e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 11 Sep 2013 01:23:45 -0300 Subject: Test for the actual repo --- git-shell-commands/delete-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/delete-repo b/git-shell-commands/delete-repo index 1e4350e..17804c6 100755 --- a/git-shell-commands/delete-repo +++ b/git-shell-commands/delete-repo @@ -6,7 +6,7 @@ set -e for repo in $@; do - test ! -d "$repo" && continue + test ! -d "$repo".git && continue # lo and behold absolute horror rm -rf "$repo".git -- cgit v1.2.3-2-g168b From 34b2ef6f3896d54436c24282c39145c5ee5c45c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 11 Sep 2013 01:27:16 -0300 Subject: A bit more secure --- git-shell-commands/delete-repo | 3 +++ 1 file changed, 3 insertions(+) (limited to 'git-shell-commands') diff --git a/git-shell-commands/delete-repo b/git-shell-commands/delete-repo index 17804c6..075f77a 100755 --- a/git-shell-commands/delete-repo +++ b/git-shell-commands/delete-repo @@ -6,8 +6,11 @@ set -e for repo in $@; do +# Remove leading slashes and dots and perform cleanup + repo="`echo "$repo" | sed -e "s,^[/\.]\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" test ! -d "$repo".git && continue + echo "Removing ${repo}.git" # lo and behold absolute horror rm -rf "$repo".git done -- cgit v1.2.3-2-g168b From 2de9e49f22008c25fccfe79396e42e80b7c56cef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 11 Sep 2013 01:27:48 -0300 Subject: Since we're at it secure create-bare-repo too --- git-shell-commands/create-bare-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/create-bare-repo b/git-shell-commands/create-bare-repo index 6c83bc6..1e06580 100755 --- a/git-shell-commands/create-bare-repo +++ b/git-shell-commands/create-bare-repo @@ -7,7 +7,7 @@ set -e for i in $@; do # Cleanup names - repo="`echo "$i" | sed "s/[^a-z0-9\._-]//gi"`" + repo="`echo "$repo" | sed -e "s,^[/\.]\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" if [ -z "$repo" ]; then continue; fi -- cgit v1.2.3-2-g168b From 47d4a9eaa9f66aded2f0729d33b29d36e080ec05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 11 Sep 2013 01:29:41 -0300 Subject: More fixups --- git-shell-commands/create-bare-repo | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/create-bare-repo b/git-shell-commands/create-bare-repo index 1e06580..a6e49e3 100755 --- a/git-shell-commands/create-bare-repo +++ b/git-shell-commands/create-bare-repo @@ -5,13 +5,13 @@ set -e -for i in $@; do +for repo in $@; do # Cleanup names repo="`echo "$repo" | sed -e "s,^[/\.]\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" + test ! -d "$repo".git && continue - if [ -z "$repo" ]; then continue; fi - - mkdir "$repo".git + mkdir -p "$repo".git pushd "$repo".git git init --bare + popd done -- cgit v1.2.3-2-g168b From ae95c2980b8aa8459155381a6644027325c6385b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 11 Sep 2013 01:37:38 -0300 Subject: Test for repo here too... --- git-shell-commands/change-description | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index a4cb197..730777c 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -7,6 +7,6 @@ set -e repo=$1; shift -echo "${@}" > ${repo}.git/description +test -d ${repo}.git && echo "${@}" > ${repo}.git/description exit $? -- cgit v1.2.3-2-g168b From 48828bef374bf88f8e61a4ba8a31c872131d925e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 11 Sep 2013 01:38:33 -0300 Subject: Add .git sufix --- git-shell-commands/change-owner | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/change-owner b/git-shell-commands/change-owner index 41bf22b..4cf90c7 100755 --- a/git-shell-commands/change-owner +++ b/git-shell-commands/change-owner @@ -7,6 +7,7 @@ set -e repo=$1; shift -git config -f "${repo}/config" "gitweb.owner" "${@}" +test -d "${repo}".git && \ +git config -f "${repo}.git/config" "gitweb.owner" "${@}" exit $? -- cgit v1.2.3-2-g168b From d1bdb09e361ec4a057356d9055068c837d0005ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Tue, 17 Sep 2013 13:38:35 -0300 Subject: The test was inverted --- git-shell-commands/create-bare-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/create-bare-repo b/git-shell-commands/create-bare-repo index a6e49e3..7559fc3 100755 --- a/git-shell-commands/create-bare-repo +++ b/git-shell-commands/create-bare-repo @@ -8,7 +8,7 @@ set -e for repo in $@; do # Cleanup names repo="`echo "$repo" | sed -e "s,^[/\.]\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" - test ! -d "$repo".git && continue + test -d "$repo".git && continue mkdir -p "$repo".git pushd "$repo".git -- cgit v1.2.3-2-g168b From 76571cb2dc2644e9eb23758cd8da6d281d573994 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Tue, 8 Oct 2013 11:58:22 -0300 Subject: Allow hidden repos --- git-shell-commands/create-bare-repo | 4 ++-- git-shell-commands/delete-repo | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/create-bare-repo b/git-shell-commands/create-bare-repo index 7559fc3..3051c9d 100755 --- a/git-shell-commands/create-bare-repo +++ b/git-shell-commands/create-bare-repo @@ -6,8 +6,8 @@ set -e for repo in $@; do -# Cleanup names - repo="`echo "$repo" | sed -e "s,^[/\.]\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" +# Cleanup names, allow hidden repos + repo="`echo "$repo" | sed -e "s/\.\.//g" -e "s,^/\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" test -d "$repo".git && continue mkdir -p "$repo".git diff --git a/git-shell-commands/delete-repo b/git-shell-commands/delete-repo index 075f77a..4ca644e 100755 --- a/git-shell-commands/delete-repo +++ b/git-shell-commands/delete-repo @@ -7,7 +7,7 @@ set -e for repo in $@; do # Remove leading slashes and dots and perform cleanup - repo="`echo "$repo" | sed -e "s,^[/\.]\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" + repo="`echo "$repo" | sed -e "s/\.\.//g" -e "s,^/\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" test ! -d "$repo".git && continue echo "Removing ${repo}.git" -- cgit v1.2.3-2-g168b