选中内容(绿色)时除了会搜索文章名,还会搜索文章内容
点击结果中的文章名进入文章界面后可以按Ctrl+F在页面内搜索
  • 版权:CC BY-SA 4.0
  • 创建:2019-10-14
  • 更新:2019-10-19
git 使用需要注意的地方


Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Git is easy to learn and has a tiny footprint with lightning fast performance. It outclasses SCM tools like Subversion, CVS, Perforce, and ClearCase with features like cheap local branching, convenient staging areas, and multiple workflows.

Web:https://git-scm.com/
Doc:https://git-scm.com/doc
中文教程:http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/

使用git必须注意的事情:

1. 跨平台使用git时,文件换行符(Windows下CR LF ,linux和mac下LF)转换问题

因为不同操作系统使用的换行符不一致,Windows下使用CR LF ,linux和mac下使用LF,所以要根据情况进行转换
可以使用notepad++进行查看

notepad++查看换行符

使用AutoCRLF参数设置是否转换

  1. * 提交时转换为LF,检出时转换为CRLF
  2. git config --global core.autocrlf true
  3. * 提交时转换为LF,检出时不转换
  4. git config --global core.autocrlf input
  5. * 提交检出均不转换
  6. git config --global core.autocrlf false
  7. SafeCRLF
  8. * 拒绝提交包含混合换行符的文件
  9. git config --global core.safecrlf true
  10. * 允许提交包含混合换行符的文件
  11. git config --global core.safecrlf false
  12. * 提交包含混合换行符的文件时给出警告
  13. git config --global core.safecrlf warn

所以根据情况进行设定,比如在linux下编辑,则文件是LF换行,提交到云端时无论设不设置都一样,当需要克隆到Windows时,如果设置了检出自动转换,克隆下来的文件是CRLF结尾的,如果编译器编辑器支持CRLF格式的,则没问题;’如果不支持这时候就会出问题,需要设置不自动转换

二进制文件

在文件.gitattributes中可以指定哪些文件是二进制文件,从而防止二进制文件在提交时被修改,比如.a文件,如果不设置,提交后可能CRLF会被替换成LF,从而导致无法使用,编译提示

  1. error adding symbols: file truncated

.gitattributes中加入

  1. *.a binary

不但如此,还可以单独指定哪些文件使用CRLF结尾,或者是字符文件,比如:

  1. version.h -text
  2. *.vcxproj text eol=crlf
  3. *.props text eol=crlf
  4. *.bat text eol=crlf
  5. * text eol=lf

git lfs

安装:

删除子模块

git不支持命令删除子模块,需要手动删除

  • 删除.gitmodules内的对应子模块的字符,并且git add .gitmodules
  • 删除缓存git rm --cached 子模块路径(相对于仓库根目录)
  • 删除子模块文件夹
  • 删除.git文件夹下config文件内的对应子模块的内容
  • git commit -m "remove submodule..."

从其它的远程仓库合并到本地仓库

  1. # 本地已经有一个远程或者没有,都没关系,假设已经有一个叫 origin
  2. git remote -v
  3. git remote add origin2 git@......git
  4. git remote update
  5. git checkout -b new origin2/master
  6. git checkout master
  7. git merge new
  8. git push origin master

或者参考 github 合并指令:

Merging via command line
If you do not want to use the merge button or an automatic merge cannot be performed, you can perform a manual merge on the command line.

Step 1: From your project repository, check out a new branch and test the changes.

  1. git checkout -b new master
  2. git pull https://github.com/xxx/xxxx.git branch_name

Step 2: Merge the changes and update on GitHub.

  1. git checkout master
  2. git merge --no-ff new
  3. git push origin master

参考:git 换行符LF与CRLF转换问题

文章有误?有想法想讨论?查看或者发起勘误/讨论 主题
(发起评论需要先登录 github)

/wallpaper/wallhaven-5weqr5.jpg