# jc-cli **Repository Path**: jieceng/jc-cli ## Basic Information - **Project Name**: jc-cli - **Description**: webpack test - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Git如何重新定义gitignore 修改过滤规则 1. 同步远程仓库 ```js $ git pull ``` 2. 删除本地缓存 ```js $ git rm -r --cached . ``` 3. 再次commit ```js $ git -m commit 'add .gitignore' ``` 4. push ```js $ git push ```