git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] 7/7 add -N option to cg-init
@ 2005-07-08 10:54 Bryan Larsen
  0 siblings, 0 replies; only message in thread
From: Bryan Larsen @ 2005-07-08 10:54 UTC (permalink / raw)
  To: git

add -N option to cg-init

Signed-off-by: Bryan Larsen <bryan.larsen@gmail.com>
---

  cg-init |   22 +++++++++++++++++++---
  1 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/cg-init b/cg-init
--- a/cg-init
+++ b/cg-init
@@ -10,13 +10,29 @@
  #
  # If `cg-init` is run in a non-empty directory files in the top and
  # sub directory will automatically be added.
+#
+# OPTIONS
+# -------
+# -N::
+#   Only update the cache: do not copy the data into the object database.
+#

-USAGE="cg-init"
+USAGE="cg-init [-N]"
  _git_repo_unneeded=1

  . ${COGITO_LIB}cg-Xlib

-uri=$1
+
+infoonly=
+while optparse; do
+       if optparse -N; then
+               infoonly=-N
+       else
+               optfail
+       fi
+done
+
+uri=$ARGV

  [ -e $_git ] && die "$_git already exists"

@@ -38,7 +54,7 @@ if [ "$uri" ]; then
         echo "Cloned (origin $uri available as branch \"origin\")"
  else
         git-read-tree # Seed the dircache
-       find * \( -type f -o -type l \) -print0 | xargs -0r cg-add
+       find * \( -type f -o -type l \) -print0 | xargs -0r cg-add 
${infoonly}
         cg-commit -C -m"Initial commit" -E
  fi

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-07-08 11:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-08 10:54 [PATCH] 7/7 add -N option to cg-init Bryan Larsen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).