Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts/update-index-all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update-index-all.sh')
-rwxr-xr-xscripts/update-index-all.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/update-index-all.sh b/scripts/update-index-all.sh
new file mode 100755
index 0000000..30dd058
--- /dev/null
+++ b/scripts/update-index-all.sh
@@ -0,0 +1,5 @@
+ #!/bin/sh
+
+for F in $( git-status | grep modified | cut -f 2 | cut -d ' ' -f 4 ) ; do
+ git-update-index $F
+done