* [PATCH] 6/7 Add the -N option to cg-commit.
@ 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 the -N option to cg-commit.
Signed-off-by: Bryan Larsen <bryan.larsen@gmail.com>
---
cg-commit | 15 ++++++++++++---
1 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/cg-commit b/cg-commit
--- a/cg-commit
+++ b/cg-commit
@@ -39,6 +39,10 @@
# the tree is the same as the last time you committed, no changes
# happenned.
#
+# -N::
+# Don't add the files to the object database, just update the caches
+# and the commit information.
+#
# FILES
# -----
# $GIT_DIR/author::
@@ -103,11 +107,16 @@ fi
force=
forceeditor=
ignorecache=
+infoonly=
commitalways=
+nocheck=
msgs=()
while optparse; do
if optparse -C; then
ignorecache=1
+ elif optparse -N; then
+ nocheck=--no-check
+ infoonly=--info-only
elif optparse -e; then
forceeditor=1
elif optparse -E; then
@@ -278,9 +287,9 @@ precommit_update () {
eval "queue$op[\${#queue$op[@]}]=\"\$fname\""
done
# XXX: Do we even need to do the --add and --remove update-caches?
- [ "$queueN" ] && { git-update-cache --add -- "${queueN[@]}" || return 1; }
+ [ "$queueN" ] && { git-update-cache --add ${infoonly} --
"${queueN[@]}" || return 1; }
[ "$queueD" ] && { git-update-cache --force-remove -- "${queueD[@]}"
|| return 1; }
- [ "$queueM" ] && { git-update-cache -- "${queueM[@]}" || return 1; }
+ [ "$queueM" ] && { git-update-cache ${infoonly} -- "${queueM[@]}" ||
return 1; }
return 0
}
@@ -300,7 +309,7 @@ if [ -s "$_git/HEAD" ]; then
oldheadstr="-p $oldhead"
fi
-treeid=$(git-write-tree)
+treeid=$(git-write-tree ${nocheck})
[ "$treeid" ] || die "git-write-tree failed"
if [ ! "$force" ] && [ ! "$merging" ] && [ "$oldhead" ] &&
[ "$treeid" = "$(tree-id)" ]; then
\f
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-07-08 11:09 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] 6/7 Add the -N option to cg-commit 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).