随笔分类 -  GIT

git
摘要:有时使用git拉取gitlab上的项目时会出现如下的错误信息:Repository not found remote: Repository not found. fatal: repository 'http://10.68.7.177/xxx/xxx.git' not found 出现此错误是因 阅读全文
posted @ 2020-10-30 12:47 otkur 阅读(10144) 评论(0) 推荐(2)
摘要:1、git log 查看提交2、通过checkout 跟上commitId 即可创建制定commit之前的本地分支 git checkout commitId -b 本地新branchName 3、上传到远程服务器 git push origin HEAD:远程新branchName 阅读全文
posted @ 2020-07-19 04:44 otkur 阅读(1804) 评论(0) 推荐(0)