zoukankan      html  css  js  c++  java
  • 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 查看远程分支、本地分支、删除本地分支

  • 相关阅读:
    Tomcat Connector的三种运行模式
    Tomcat管理页面配置
    URI、URL、URN
    利用libcurl进行post
    安装WIA组件
    wget访问SOAP接口
    haproxy+tomcat集群搭建
    Redis主从复制及状态监测
    VB6之Mandelbrot集
    leetcode Word Search
  • 原文地址:https://www.cnblogs.com/lovebing/p/7121754.html
Copyright © 2011-2022 走看看