* [TopGit-PATCH] Force adding the .topmsg and .topdep files.
@ 2008-08-14 5:15 David Brown
0 siblings, 0 replies; only message in thread
From: David Brown @ 2008-08-14 5:15 UTC (permalink / raw)
To: Petr Baudis; +Cc: git, David Brown
If the .gitignore in effect is ignoring the .topmsg and .topdeps
files, tg create will fail trying to add these files. Add the
'-f option to these add commands to force the files to be added
anyway.
Signed-off-by: David Brown <git@davidb.org>
---
tg-create.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tg-create.sh b/tg-create.sh
index 939af33..3f33fa8 100644
--- a/tg-create.sh
+++ b/tg-create.sh
@@ -100,7 +100,7 @@ git update-ref "refs/top-bases/$name" "HEAD" ""
git checkout -b "$name"
echo "$deps" | sed 's/ /\n/g' >"$root_dir/.topdeps"
-git add "$root_dir/.topdeps"
+git add -f "$root_dir/.topdeps"
author="$(git var GIT_AUTHOR_IDENT)"
author_addr="${author%> *}>"
@@ -118,7 +118,7 @@ author_addr="${author%> *}>"
Signed-off-by: $author_addr
EOT
} >"$root_dir/.topmsg"
-git add "$root_dir/.topmsg"
+git add -f "$root_dir/.topmsg"
--
1.5.6.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-08-14 5:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-14 5:15 [TopGit-PATCH] Force adding the .topmsg and .topdep files David Brown
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).