GIT 实用命令速记

Refer: git的一些使用_git config --local core.excludesfile-CSDN博客

一、忽略文件或文件夹.gitignore

# 如果没有.gitignore文件
touch .gitignore
# 这是gitignore,设置为local的excludesfile
git config --local core.excludesfile .gitignore
vim .gitignore

你可能感兴趣的:(git)