📜  即使在 gitignore 中也没有排除文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:41.599000             🧑  作者: Mango

代码示例1
# Remove the files from the index (not the actual files in the working copy)
$ git rm -r --cached .

# Add these removals to the Staging Area...
$ git add .

# ...and commit them!
$ git commit -m "Clean up ignored files"