git
开水没有冬天
如果可以,我会珍惜
展开
-
编辑器操作git
webstorm:项目文件夹右键,git:commit:commit,amend(修改commit内容)repository:pull,push,rebasevscode:原创 2021-04-09 16:46:53 · 96 阅读 · 0 评论 -
git撤销commit
参考:https://www.jianshu.com/p/a9f327da3562撤销commit// 不删除工作空间的改动代码 ,撤销commit,不撤销git add filegit reset --soft HEAD^ // 撤销commit,保留add状态// 删除工作空间的改动代码,撤销commit且撤销addgit reset --hard HEAD^ // 回退版本commit后修改注释:使用amend:git commit --amend // 进入vim编辑器例如,你原创 2021-04-09 16:19:04 · 132 阅读 · 0 评论 -
git密码更新后access denied
现象:更新git密码后,gitlab可以登录,但是每次pull代码的时候,总是报错:remote :HTTP Basic :Access deniedfatal: Authentication failed for ‘gitlab地址xxxxx’https://blog.csdn.net/zhuanyemanong/article/details/81436717需要更改本地的gi...原创 2020-03-21 10:44:23 · 1150 阅读 · 0 评论 -
git-rebase&git-squash
gitmr:mergeRequestrebase:https://blog.csdn.net/liuchunming033/article/details/87195568rebase和squash的区别:https://www.jianshu.com/p/684a8ae9dcf1https://blog.csdn.net/u013276277/article/details/824701...原创 2019-12-02 15:58:28 · 548 阅读 · 0 评论 -
git cherry-pick
https://www.cnblogs.com/fengkunangel/p/10545119.htmlhttps://blog.csdn.net/weixin_40805079/article/details/88803851https://segmentfault.com/a/1190000012897542https://www.cnblogs.com/skaarl/p/1036680...原创 2019-11-22 11:21:03 · 379 阅读 · 0 评论 -
git pull代码的时候,报错
$ git pullremote: HTTP Basic: Access deniedfatal: Authentication failed for 'http://gitlab.irootech.com/developer-center-v2.0/rootcloud-developers.git/'修改了git密码,然后原有项目在pull代码的时候,报错:报错信息如上:操作如...原创 2019-04-19 13:38:56 · 381 阅读 · 0 评论 -
git submodule的使用
父项目1中使用了submodule,而且,需要修改submodule(子项目),且需要在父项目2中更新submodule,如何操作:在父项目1的子项目中,在子项目的文件中中(eg:我的项目是common文件夹下)打开git命令,先切换分支(要不然不知道往哪个分支上提交代码) git checkout master git pull修改子项目的代码,git statusgit add ...原创 2019-01-10 21:04:02 · 812 阅读 · 0 评论 -
git使用
https://blog.csdn.net/wangrenbao123/article/details/55511461/原创 2018-11-08 13:33:52 · 116 阅读 · 0 评论 -
git中的ssh
参考:https://blog.csdn.net/qq_31411389/article/details/53518507gitbash中:ssh-keygen -t rsa生成成功:Your identification has been saved in /c/Users/xxxxxx/.ssh/id_rsa. // 文件目录// .......The key's rando...原创 2018-11-09 20:36:43 · 247 阅读 · 0 评论 -
git 使用教程 之 Mac查看.ssh文件夹的方法
cankao:https://blog.csdn.net/u014361280/article/details/79361509原创 2018-09-23 12:47:00 · 1425 阅读 · 0 评论 -
git配置
Git配置:(git bash here) git config –global user.name xxx git config –global user.email xxx@xxx.com Git查看用户名和邮箱: Git config user.name =》复制出来看一下是否有乱码(复制在搜索框里看) Git config user.emailGit ba...原创 2018-09-10 11:17:22 · 142 阅读 · 0 评论 -
git教程
简介: 介: 最先进的分布式版本控制系统 Linus在1991年创建了开源的Linux,从此,Linux系统不断发展,已经成为最大的服务器系统软件了。 林纳斯·本纳第克特·托瓦兹(Linus Benedict Torvalds, 1969年~ ),著名的电脑程序员、黑客。 Svn等集中式版本控制系统速度慢,且必须联网;一些商用版本控制系统是付费的,与linux的开源精神不符! ...原创 2018-09-10 11:09:48 · 111 阅读 · 0 评论 -
git操作规范
新功能:从dev拉取分支 feature/device 测试阶段bug:bugfix/device 线上阶段bug:hotfix/devicemaster分支上:git commit -m "第一版保存内容"返回内容分别表示内容:=> [ 分支 版本号 ] commit信息[master ebfe411] 第一版保存内容958 files c...原创 2018-09-10 11:07:01 · 317 阅读 · 0 评论 -
本地文件上传到github
文章: https://www.cnblogs.com/leisurezxy/p/8203435.html 我自己的github 在文件夹内部使用这些命令原创 2018-08-26 17:03:49 · 157 阅读 · 0 评论 -
git命令整理
参考:地址1 廖雪峰:廖雪峰讲解原创 2018-09-05 13:35:32 · 533 阅读 · 1 评论