git
文章平均质量分 70
harryhare
这个作者很懒,什么都没留下…
展开
-
git ssh key 配置
产生 keyssh-keygen场景一不同git server,不同 ssh key编辑文件 ~/.ssh/configHost <Host Name>HostName AAAAAAA.orgIdentityFile ~/.ssh/<key for the given host>Host <Host1 Name>HostName B...原创 2020-04-06 01:45:00 · 206 阅读 · 0 评论 -
github 开启两步认证后 不能 git clone 和 git push
解决方法主要有两个 11. 改用sshssh-keygen 然后把pub文件中的内入粘贴到github上2.申请Access Token在github上 生成access token 后 2,需要密码的地方粘贴token 就可以了https://help.github.com/articles/creating-a-personal-access-token-for-the-command-lin原创 2017-12-23 19:31:56 · 8895 阅读 · 0 评论 -
git (code school 笔记)
包括git real,git real2,master github 三个课程的笔记 比较混乱。。。。0.config git config –global user.name ‘yourname’ git config –global user.email ‘xx@xx.com’ git config –global color.ui true git config –global co原创 2017-12-25 23:30:42 · 312 阅读 · 0 评论 -
git push时不输入密码
方法一:存储用户名密码git config credential.helper store方法二:配置ssh key参考:https://www.zhihu.com/question/31836445转载 2018-05-25 00:48:50 · 1323 阅读 · 0 评论 -
git submodule
https://www.cnblogs.com/nicksheng/p/6201711.htmlhttps://my.oschina.net/iatbforever/blog/228914https://blog.csdn.net/wangjia55/article/details/24400501https://blog.csdn.net/bailyzheng/article/det...原创 2018-06-05 09:36:24 · 437 阅读 · 0 评论 -
git 备忘
1.删掉对文件的跟踪,而不删除文件本身git rm --cached doc2.记住pull push的remote 和 分支git push -u origin master原创 2018-06-05 09:44:00 · 172 阅读 · 0 评论 -
git husky
现象: 有时git commit 会报index.lock 错误,但是你检查这个文件时发现这个文件并不存在。可能原因: git commit 由于某种原因同时跑了两个(多个)commit的进程,其中一个加了锁,另外几个进程自然就回报index.lock exist 的错误。解决: 就像报错中最后那句提到的那样:git commit --no-verify...原创 2018-08-01 17:38:05 · 1477 阅读 · 0 评论 -
git 代码行数统计
https://www.cnblogs.com/xingzc/p/5987087.htmlgit log --author=&quot;$(git config --get user.name)&quot; --pretty=tformat: --numstat | awk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf &quot;added lines:...转载 2019-03-10 14:24:52 · 1222 阅读 · 0 评论