随笔分类 -  git

摘要:Secret Text 需要预先在Github 上配置 Personal Token Key 配置 Personal Token Key 的路径为:【GitHub 用户图像】-> 【Setttings】-> 【Developer Settings】-> 【Personal access Token】 阅读全文
posted @ 2020-12-10 23:34 anobscureretreat 阅读(783) 评论(0) 推荐(0) 编辑
摘要:一 获取github accessToken 依次点击 settings > Developer settings >Personal access tokens 到这里如果没有就创建一个 创建之后需要记住,因为也为刷新就没有了,这里的权限,按照需求点击 (如果不懂就全选) 二 Jenkins 配置 阅读全文
posted @ 2020-08-19 17:17 anobscureretreat 阅读(151) 评论(0) 推荐(0) 编辑
摘要:安装git yum -y install git 阅读全文
posted @ 2020-05-01 13:29 anobscureretreat 阅读(423) 评论(0) 推荐(0) 编辑
摘要:当正在dev分支上开发某个项目,这时项目中出现一个bug,需要紧急修复,但是正在开发的内容只是完成一半,还不想提交,这时可以用git stash命令将修改的内容保存至堆栈区,然后顺利切换到hotfix分支进行bug修复,修复完成后,再次切回到dev分支,从堆栈中恢复刚刚保存的内容。 由于疏忽,本应该 阅读全文
posted @ 2020-02-18 20:49 anobscureretreat 阅读(195) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.cnblogs.com/hcy-fly/p/9008323.html 阅读全文
posted @ 2019-12-23 13:56 anobscureretreat 阅读(926) 评论(0) 推荐(0) 编辑
摘要:To ssh://xxx.com:8022/test/project.git ! [remote rejected] master -> master (pre-receive hook declined)error: failed to push some refs to 'ssh://xxx.c 阅读全文
posted @ 2019-09-09 12:24 anobscureretreat 阅读(703) 评论(0) 推荐(0) 编辑
摘要:git remote set-url origin ssh://git@gitlab.tian-wang.com:8022/test/api-automation.git 阅读全文
posted @ 2019-08-26 10:04 anobscureretreat 阅读(1580) 评论(0) 推荐(0) 编辑
摘要:Git global setup git config --global user.name "xiaoming" git config --global user.email "xiaoming@xxx.com" Create a new repository git clone ssh://git@gitlab.xxx.com:8022/test/jixie-automated-te... 阅读全文
posted @ 2019-08-24 00:01 anobscureretreat 阅读(156) 评论(0) 推荐(0) 编辑
摘要:#换行swswsw\<br> #横线___ #标题#一级标题 ##二级标题 ###三级标题 ####四级标题 #####五级标题 ######六级标题 #文本域 test duanluo xsxsxsxs xsxsxsxs___ #单行文本 xsxsxsswswswsw ___ #高亮显示Thank 阅读全文
posted @ 2019-08-22 11:00 anobscureretreat 阅读(278) 评论(0) 推荐(0) 编辑
摘要:#生成公钥ssh-keygen -t ed25519 -C "xxx@tianwang.com"#拷贝公钥pbcopy < ~/.ssh/id_ed25519.pub 在网页 user settings -> ssh keys 页面,粘贴公钥 本地端创建仓库mkdir projectcd proje 阅读全文
posted @ 2019-08-21 16:06 anobscureretreat 阅读(383) 评论(0) 推荐(0) 编辑
摘要:clone 是本地没有 repository 时,将远程 repository 整个下载过来。 pull 是本地有 repository 时,将远程 repository 里新的 commit 数据(如有的话)下载过来,并且与本地代码merge。 note:git pull相当于git fetch和 阅读全文
posted @ 2019-03-12 11:57 anobscureretreat 阅读(2777) 评论(0) 推荐(0) 编辑
摘要:将文件夹名字从 v1.0.1 修改为 v1.0.2 阅读全文
posted @ 2019-03-04 15:51 anobscureretreat 阅读(2819) 评论(0) 推荐(0) 编辑
摘要:为某个分支打tag 删除tag 推送: 阅读全文
posted @ 2019-02-26 17:23 anobscureretreat 阅读(145) 评论(0) 推荐(0) 编辑
摘要:再使用ls查看就可以了 阅读全文
posted @ 2019-02-26 16:58 anobscureretreat 阅读(418) 评论(0) 推荐(0) 编辑
摘要:查看系统是否已经安装git yum安装git 安装成功 卸载git 参考: https://www.cnblogs.com/liaojie970/p/6253404.html 阅读全文
posted @ 2019-02-17 15:40 anobscureretreat 阅读(271) 评论(0) 推荐(1) 编辑
摘要://创建分支 //创建并切换到新分支 //远程分支 //查看远程分支 //删除本地分支 //删除远程分支 阅读全文
posted @ 2019-02-11 11:26 anobscureretreat 阅读(215) 评论(0) 推荐(0) 编辑
摘要:列出现有标签(或者使用git tag -l) 如果只对 1.4.2 系列的版本感兴趣 创建一个含附注类型的标签 查看相应标签的版本信息,并连同显示打标签时的提交对象 后期加注标签 我们忘了在提交 “updated rakefile” 后为此项目打上版本号 v1.2,没关系,现在也能做。只要在打标签的 阅读全文
posted @ 2019-02-11 11:17 anobscureretreat 阅读(215) 评论(0) 推荐(0) 编辑
摘要:创建分支 创建并切换到分支 查看版本库中所有分支 切换到某一分支 删除某一分支 合并分支 阅读全文
posted @ 2018-12-01 01:59 anobscureretreat 阅读(128) 评论(0) 推荐(0) 编辑
摘要:在add之前撤回文件: 已经add的,先取消添加,再撤回 add了,并且commit的,回到前一个提交的版本: git log看下版本历史 或者指定版本号: 查看所有版本号: 回退到指定版本号 阅读全文
posted @ 2018-12-01 01:49 anobscureretreat 阅读(220) 评论(0) 推荐(0) 编辑
摘要:生成公钥 查看公钥 阅读全文
posted @ 2018-09-27 15:33 anobscureretreat 阅读(145) 评论(0) 推荐(0) 编辑