git 使用汇总
- git add .出现 warning: LF will be replaced by CRLF in …
解决方法:
先执行 git config --global core.autocrlf false 命令
再执行 git add . 命令即可
原因:
修改全局变量的初始值
路径中存在 / 的符号转义问题,false就是不转换符号,默认是true,会将路径的 / 符号进行转义
-
git commit -m Please tell me who you are.
是因为初始化不正确导致,重新执行下列命令
git init
git config user.name “someone”
git config user.email “someone@someplace.com”
git add *
git commit -m “some init msg” -
git 过滤 一些文件 比如 pycache
在 .git 中创建文件 .gitignore 内容编辑如下:
$ cat .gitignore
*/pycache -
git Authentication failed
控制面板,修改git的window凭据