新手用git
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新手用git相关的知识,希望对你有一定的参考价值。
最近几天用到了git,作为只看过教程,没有在实际项目中使用过的人来说,简直是 T_T ......
在这里记录一下,以防以后忘记。
- clone :本地没有该库,从远程repository拷贝到本地
- pull : 本地有该库,将远程repository的新commit下载到本地,并与本地merge
- 提交新的变更,一般的步骤是:
> git add . > git commit -m "new commit" > git push
- 遇到的几个问题:
- fatal: LF would be replaced by CRLF / fatal: LF would be replaced by CRLF : http://blog.csdn.net/lysc_forever/article/details/42835203
-
fatal: No remote repository specified. Please, specify either a URL or a remote name from which new revisions should be fetched. : 可能是由于 .git/config 中配置不当,搜到了这篇文章(http://www.myexception.cn/operating-system/1470149.html),笔者贴上了一个模板,如下:
[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true precomposeunicode = false [remote "origin"] url = https://github.com/CrossLee/xxx.git fetch = +refs/heads/*:refs/remotes/origin/* pushurl = https://github.com/CrossLee/xxx.git [branch "master"] remote = origin merge = refs/heads/master
其中 url pushurl 换成自己的项目地址。
以上是关于新手用git的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程