2
0
mirror of https://github.com/LCTT/TranslateProject.git synced 2025-03-30 02:40:11 +08:00

add done: 20180222 3 reasons to say -no- in DevOps.md

This commit is contained in:
darksun 2018-02-22 16:40:26 +08:00
parent a9a887ea57
commit 4e4668c2a0

7
sources/remove_DMCA.sh Executable file
View File

@ -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