Commit 771c8b70cf516c50e64c50ad5234183f9f5dd046
- Date: Thu May 08 07:31:58 +0000 2008
- Committer: Dustin Sallings (dustin@spy.net)
- Author: Dustin Sallings (dustin@spy.net)
- Commit SHA1: 771c8b70cf516c50e64c50ad5234183f9f5dd046
- Tree SHA1: 97156f385e7ca16fc23017625f50778391ff37d7
An addremove tool for git (similar to mercurial's)
Commit diff
| |   |
| 1 | #!/bin/sh |
| 2 | |
| 3 | git add . |
| 4 | git ls-files -m | xargs git rm |
| toggle raw diff |
--- /dev/null
+++ b/git-addremove
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+git add .
+git ls-files -m | xargs git rm |