ファイル削除後にgit rm を一括でする
git status | grep deleted: | awk '{print $3}' | xargs git rm | |
# ただしカラースキーム付きの場合は保証しない. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
git status | grep deleted: | awk '{print $3}' | xargs git rm | |
# ただしカラースキーム付きの場合は保証しない. |