* [PATCH] git-branch: cleanup config file when deleting branches
@ 2007-06-06 10:09 Gerrit Pape
2007-06-08 8:45 ` Junio C Hamano
0 siblings, 1 reply; 3+ messages in thread
From: Gerrit Pape @ 2007-06-06 10:09 UTC (permalink / raw)
To: Junio C Hamano, git
When deleting branches, remove the sections referring to these branches
from the config file.
Signed-off-by: Gerrit Pape <pape@smarden.org>
---
builtin-branch.c | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/builtin-branch.c b/builtin-branch.c
index a5b6bbe..3a70a7d 100644
--- a/builtin-branch.c
+++ b/builtin-branch.c
@@ -85,6 +85,7 @@ static int delete_branches(int argc, const char **argv, int force, int kinds)
unsigned char sha1[20];
char *name = NULL;
const char *fmt, *remote;
+ char section[PATH_MAX];
int i;
int ret = 0;
@@ -152,9 +153,13 @@ static int delete_branches(int argc, const char **argv, int force, int kinds)
error("Error deleting %sbranch '%s'", remote,
argv[i]);
ret = 1;
- } else
+ } else {
printf("Deleted %sbranch %s.\n", remote, argv[i]);
-
+ snprintf(section, sizeof(section), "branch.%s",
+ argv[i]);
+ if (git_config_rename_section(section, NULL) < 0)
+ warning("Update of config-file failed");
+ }
}
if (name)
--
1.5.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] git-branch: cleanup config file when deleting branches
2007-06-06 10:09 [PATCH] git-branch: cleanup config file when deleting branches Gerrit Pape
@ 2007-06-08 8:45 ` Junio C Hamano
2007-06-09 12:35 ` Gerrit Pape
0 siblings, 1 reply; 3+ messages in thread
From: Junio C Hamano @ 2007-06-08 8:45 UTC (permalink / raw)
To: Gerrit Pape; +Cc: git
Gerrit Pape <pape@smarden.org> writes:
> When deleting branches, remove the sections referring to these branches
> from the config file.
>
> Signed-off-by: Gerrit Pape <pape@smarden.org>
Hmph. Makes sense and might even be a maint material, but it
probably is safe not to do a behaviour change in maint.
Tests?
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] git-branch: cleanup config file when deleting branches
2007-06-08 8:45 ` Junio C Hamano
@ 2007-06-09 12:35 ` Gerrit Pape
0 siblings, 0 replies; 3+ messages in thread
From: Gerrit Pape @ 2007-06-09 12:35 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
When deleting branches, remove the sections referring to these branches
from the config file.
Signed-off-by: Gerrit Pape <pape@smarden.org>
---
On Fri, Jun 08, 2007 at 01:45:27AM -0700, Junio C Hamano wrote:
> Hmph. Makes sense and might even be a maint material, but it
> probably is safe not to do a behaviour change in maint.
>
> Tests?
Sure, two tests added. Regards, Gerrit.
builtin-branch.c | 9 +++++++--
t/t3200-branch.sh | 9 +++++++++
2 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/builtin-branch.c b/builtin-branch.c
index 67f46c1..9addd1a 100644
--- a/builtin-branch.c
+++ b/builtin-branch.c
@@ -85,6 +85,7 @@ static int delete_branches(int argc, const char **argv, int force, int kinds)
unsigned char sha1[20];
char *name = NULL;
const char *fmt, *remote;
+ char section[PATH_MAX];
int i;
int ret = 0;
@@ -152,9 +153,13 @@ static int delete_branches(int argc, const char **argv, int force, int kinds)
error("Error deleting %sbranch '%s'", remote,
argv[i]);
ret = 1;
- } else
+ } else {
printf("Deleted %sbranch %s.\n", remote, argv[i]);
-
+ snprintf(section, sizeof(section), "branch.%s",
+ argv[i]);
+ if (git_config_rename_section(section, NULL) < 0)
+ warning("Update of config-file failed");
+ }
}
if (name)
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh
index 6f6d884..1322bfb 100755
--- a/t/t3200-branch.sh
+++ b/t/t3200-branch.sh
@@ -171,6 +171,15 @@ test_expect_success 'test tracking setup via --track but deeper' \
test "$(git-config branch.my7.remote)" = local &&
test "$(git-config branch.my7.merge)" = refs/heads/o/o'
+test_expect_success 'test deleting branch deletes branch config' \
+ 'git-branch -d my7 &&
+ test "$(git-config branch.my7.remote)" = "" &&
+ test "$(git-config branch.my7.merge)" = ""'
+
+test_expect_success 'test deleting branch without config' \
+ 'git-branch my7 s &&
+ test "$(git-branch -d my7)" = "Deleted branch my7."'
+
# Keep this test last, as it changes the current branch
cat >expect <<EOF
0000000000000000000000000000000000000000 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from master
--
1.5.2.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-06-09 12:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-06 10:09 [PATCH] git-branch: cleanup config file when deleting branches Gerrit Pape
2007-06-08 8:45 ` Junio C Hamano
2007-06-09 12:35 ` Gerrit Pape
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox