Git development
 help / color / mirror / Atom feed
* [PATCH] Simplify packing public repositories
@ 2006-05-16 11:46 Timo Hirvonen
       [not found] ` <20060516074710.29ef67ca.seanlkml@sympatico.ca>
  0 siblings, 1 reply; 2+ messages in thread
From: Timo Hirvonen @ 2006-05-16 11:46 UTC (permalink / raw)
  To: junkio; +Cc: git

Support "git repack project.git" syntax which is more intuitive than
using the GIT_DIR environment variable.

Signed-off-by: Timo Hirvonen <tihirvon@gmail.com>

---

 git-repack.sh |   27 ++++++++++++++++++++++++---
 1 files changed, 24 insertions(+), 3 deletions(-)

c09c41750023e5b502312ddaa21bf5a2371e66ac
diff --git a/git-repack.sh b/git-repack.sh
index 4fb3f26..b24cd1a 100755
--- a/git-repack.sh
+++ b/git-repack.sh
@@ -3,8 +3,8 @@ #
 # Copyright (c) 2005 Linus Torvalds
 #
 
-USAGE='[-a] [-d] [-f] [-l] [-n] [-q]'
-. git-sh-setup
+unset CDPATH
+USAGE='[-a] [-d] [-f] [-l] [-n] [-q] [GIT_DIR]'
 
 no_update_info= all_into_one= remove_redundant=
 local= quiet= no_reuse_delta= extra=
@@ -19,11 +19,32 @@ do
 	-l)	local=--local ;;
 	--window=*) extra="$extra $1" ;;
 	--depth=*) extra="$extra $1" ;;
-	*)	usage ;;
+	-h|--h|--he|--hel|--help)
+		echo "Usage: $0 $USAGE"
+		exit
+		;;
+	*)
+		if test "$#" -gt 1
+		then
+			echo >&2 "Usage: $0 $USAGE"
+			exit 1
+		fi
+		export GIT_DIR="$1"
+		;;
 	esac
 	shift
 done
 
+: ${GIT_DIR=.git}
+: ${GIT_OBJECT_DIRECTORY="$GIT_DIR/objects"}
+
+# Make sure we are in a valid repository of a vintage we understand.
+GIT_DIR="$GIT_DIR" git repo-config --get core.nosuch >/dev/null
+if test $? = 128
+then
+    exit
+fi
+
 rm -f .tmp-pack-*
 PACKDIR="$GIT_OBJECT_DIRECTORY/pack"
 
-- 
1.3.3.g8701-dirty

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Simplify packing public repositories
       [not found] ` <20060516074710.29ef67ca.seanlkml@sympatico.ca>
@ 2006-05-16 11:47   ` Sean
  0 siblings, 0 replies; 2+ messages in thread
From: Sean @ 2006-05-16 11:47 UTC (permalink / raw)
  To: Timo Hirvonen; +Cc: junkio, git

On Tue, 16 May 2006 14:46:35 +0300
Timo Hirvonen <tihirvon@gmail.com> wrote:

> Support "git repack project.git" syntax which is more intuitive than
> using the GIT_DIR environment variable.
> 

There are a few commands that would benefit from being easier to run
in a bare repository.  If this option was added to the "git" wrapper
rather than git-repack, it would work for all of them.  But maybe
git could just automatically recognize when it's in a bare repository.

Sean

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-05-16 11:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-16 11:46 [PATCH] Simplify packing public repositories Timo Hirvonen
     [not found] ` <20060516074710.29ef67ca.seanlkml@sympatico.ca>
2006-05-16 11:47   ` Sean

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox