6 lines
92 B
Bash
Executable File
6 lines
92 B
Bash
Executable File
#! /bin/bash
|
|
|
|
for i in $(git status | grep deleted | awk {'print $2'}); do
|
|
git rm $i
|
|
done
|