1、添加忽略文件 在git根目录添加.gitignore文件,里面写出你要添加的文件(包括真实路径),然后把该文件添加到远程仓库里面,注意了,在使用git add时,不能直接用git add *,这样无法添加进去,因为git把.gitignore文件识别为未跟踪文件,如要使用git add .gitignore指令添加,然后git commit -m 'add .gitignore'和git push
git强制覆盖:
git fetch --all
git reset --hard origin/master
git pull
2、# 删除 untracked files :git clean -f
3、git提交单个文件的变动:git commit <file> -m 'change file' → git push (不用git add)