markdown git-remove-all.md

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown git-remove-all.md相关的知识,希望对你有一定的参考价值。

### 履歴からのみ削除する(ワーキングツリーには残る)
```sh
git filter-branch -f --index-filter 'git rm --cached -rf --ignore-unmatch <ファイル名>' HEAD
```

### 履歴からもワーキングツリーからも削除する
```sh
git filter-branch -f --index-filter 'git rm -rf --ignore-unmatch <ファイル名>' HEAD
```

[引用元](https://qiita.com/muran001/items/dea2bbbaea1260098051#%E3%81%9D%E3%82%82%E3%81%9D%E3%82%82%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%81%AA%E3%82%93%E3%81%A6%E3%81%AA%E3%81%8B%E3%81%A3%E3%81%9F%E3%81%93%E3%81%A8%E3%81%AB%E3%81%99%E3%82%8B%E5%A0%B4%E5%90%88)


### wp/wp-content/uploads以下を全部なかったことにする

```sh
git filter-branch -f --index-filter 'git rm -rf --ignore-unmatch wp/wp-content/uploads' HEAD
```

以上是关于markdown git-remove-all.md的主要内容,如果未能解决你的问题,请参考以下文章

转换rst到markdown总结

markdown [Markdown HowTo]作为Markdown语法的秘籍

python markdown干啥用的

markdown前端渲染

如何用markdown生成目录

markdown排版示例