git工作中遇到的问题及解决方法。

1.有些想提交的文件并没有被跟踪:unstracked files

使用命令行:git add *   --将目录里的所有文件提交到暂存区后(注意使用场景)

2.本地更改了多个文件,想全部提交上去,怎么做?

git add .

3.git commit前要不要去个人私有仓库git pull一下?

不需要,只需在git push前进行这项操作就行了。

4.git log查看的到底是什么?

5.如何解决 git 提交出现不需要跟踪的系统文件?---.DS_Store

1. 先删除原有的.DS_Store:

find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch

命令解释:在当前文件夹以及当前文件夹的子文件夹中找到所有的.DS_Store文件,并将找到的文件通过管道传给xargs来处理。注意几个参数的理解: 
-print0:在find后不添加换行符(-print默认会添加换行符) 
-0:将管道送来的字符串当做普通的字符串,不做任何转义处理。

2. 建立.gitignore文件

vi .gitignore。然后添加.DS_Store作为忽略:

.DS_Store

3. 提交到git

git add .gitignore
git commit -m 'delete .DS_Store'

总结: 1-  git rm --cached logs/xx.log

      2- 新增.gitignore文件,配置

      3- git add .

      4- git commit - m 'delete'

 

 

 

 

你可能感兴趣的:(git)