From 4e4668c2a0602b349adf53e23f540a8f6032b74e Mon Sep 17 00:00:00 2001 From: darksun Date: Thu, 22 Feb 2018 16:40:26 +0800 Subject: [PATCH] add done: 20180222 3 reasons to say -no- in DevOps.md --- sources/remove_DMCA.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 sources/remove_DMCA.sh diff --git a/sources/remove_DMCA.sh b/sources/remove_DMCA.sh new file mode 100755 index 0000000000..2582f4a5b2 --- /dev/null +++ b/sources/remove_DMCA.sh @@ -0,0 +1,7 @@ +#!/bin/bash +domain="$1" +git checkout -b "$domain" +git grep -l "$domain"|while read file; do git rm "$file"; done +git commit -a -m "remove $domain" +git push -u origin "$domain" +git checkout master