projects
/
git-tools-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc64df2
)
Added script which moves .cvsignore to .gitignore.
author
Adam Dickmeiss
<adam@indexdata.dk>
Wed, 12 Mar 2008 10:42:45 +0000
(11:42 +0100)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Wed, 12 Mar 2008 10:42:45 +0000
(11:42 +0100)
cvsignore-mv.sh
[new file with mode: 0755]
patch
|
blob
diff --git a/cvsignore-mv.sh
b/cvsignore-mv.sh
new file mode 100755
(executable)
index 0000000..
ffb8ac9
--- /dev/null
+++ b/
cvsignore-mv.sh
@@ -0,0
+1,6
@@
+#!/bin/sh
+# moves all .cvsignore to .gitignore
+for c in `find . -name .cvsignore`; do
+ n=`echo $c|sed -es/cvsignore/gitignore/`
+ git mv $c $n
+done