欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

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

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


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 查看远程分支、本地分支、删除本地分支

来自  https://www.cnblogs.com/lovebing/p/7121754.html


普通分类: