[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] [githax/master] Make convertBranches script use git branch, not "dit".
Author: Nick Mathewson <nickm@xxxxxxxxxxxxxx>
Date: Tue, 28 Apr 2009 18:01:51 -0400
Subject: Make convertBranches script use git branch, not "dit".
What is a dit, anyway?
---
scripts/convertBranches | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/convertBranches b/scripts/convertBranches
index 4939b49..bf774fa 100755
--- a/scripts/convertBranches
+++ b/scripts/convertBranches
@@ -11,6 +11,6 @@ for branch in `git branch -r |grep -v svn/tags`; do
if [ -z $yesno ] || [ $yesno = "Y" ]; then
git branch $name $branch
- dit -d -r $branch
+ git branch -d -r $branch
fi
done
--
1.5.6.5