您的位置:首页 > 其它

Git提交时提示‘The file will have its original line endings in your working directory’

2017-07-05 15:42 453 查看

Git提交时提示'The file will have its original line endings in your working directory'

Git出现错误

git add -A

warning: LF will be replaced by CRLF in database/migrations/2017_07_04_10041

 

warning: LF will be replaced by CRLF

warning: LF will be replaced by CRLF in xxxxx

The file will have its original line endings in your working directory.

之前一直没在意,趁有空着手解决,原来是Git默认配置替换回车换行成统一的CRLF,我们只需要修改配置禁用该功能即可。

Gitshell中输入如下命令解决:

git config --global core.autocrlf false

 

 

如何查看分支

git branch -vv


 

git如何切换分支

 

Git checkout branch_name


 

 

 

参考链接:
Git学习笔记

1 查看远程分支

  $ git branch -a

 

  2 查看本地分支

  $ git branch

3 创建分支

 

  $ git branch test

 4 切换分支到test

  $ git checkout test

 

5 删除本地分支 git branch -d xxxxx

 
 

$ git branch -d test

 

6 查看本地和远程分支 -a。前面带*号的代表你当前工作目录所处的分支

    $ git branch -a

来自:git 查看远程分支、本地分支、删除本地分支
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐