git
文章平均质量分 52
工具->git
Morris_
个人笔记!
展开
-
git 远程上分支已删除,该分支在自己的版本库中仍然一直存在
git 远程上分支已删除,该分支在自己的版本库中仍然一直存在的解决办法原创 2023-03-08 07:24:17 · 1755 阅读 · 0 评论 -
复习使用git(二)
git的使用原创 2023-02-28 11:28:04 · 592 阅读 · 0 评论 -
复习git的使用
git的使用,分支、版本、配置原创 2023-02-23 14:14:58 · 663 阅读 · 0 评论 -
git 和 svn
git 和 svn 的区别原创 2023-02-23 09:57:37 · 385 阅读 · 0 评论 -
fatal: unable to access ‘https://github.com/xxx/xxx.git/‘
fatal: unable to access ‘https://github.com/xxx/xxx.git/’: LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443git clone xxx 的时候出现 fatal: unable to access 'https://github.com/xxx/xxx.git/,或者 pod install 的时候报 LibreSSL SSL_connect: SSL_ER原创 2021-08-12 09:10:55 · 844 阅读 · 0 评论 -
git添加.xcuserstate忽略
iOS项目,添加忽略文件后发现UserInterfaceState.xcuserstate还是没忽略。.xcuserstate是什么看起来像是什么记录状态的文件。xcuserstate files are generated from within Xcode and saved in your project bundle to remember your last opened file, the open state of any group folders, open tabs, and .原创 2020-12-08 14:11:30 · 571 阅读 · 0 评论 -
Please make sure you have the correct access rights
使用git克隆、拉取、提交的时候,发现不能操作,提示如下:Please make sure you have the correct access rights可能原因:1、git仓库不存在2、无操作权限没添加key,让管理人员将你的SSH添加至gitHub/gitLab。确认添加后,还不行的话,需要将这个项目的权限添加给你就好了。...原创 2018-08-15 11:10:59 · 3087 阅读 · 0 评论 -
克隆一个带子模块的项目
步骤git clone 仓库地址 克隆该项目 克隆下来后只会发现子模块并没有一起克隆下来,需要将子模块也克隆下来。git submodule init 初始化你的本地配置文件git submodule update 从那个项目拉取所有数据并检出你上层项目里所列的合适的提交报错处理1、如果如下错误:Please make sure you have the co...原创 2018-08-15 11:35:28 · 1143 阅读 · 2 评论 -
git常见问题总结
1、.xxx.com port 22: Connection refusedssh: connect to host xx.xxx.com port 22: Connection refused fatal: Could not read from remote repository.Please make sure you have the correct access rights and...原创 2019-07-08 19:35:06 · 1166 阅读 · 0 评论 -
error: failed to push some refs to 'git@gitlab.xxx.com:xxx/xxx.git
新建gitLabe仓库,提交报错:error: failed to push some refs to ‘git@gitlab.xxx.com:xxx/xxx.git’报错信息:error: failed to push some refs to 'git@gitlab.xxx.com:xxx/xxx.git问题过程:$ touch README.md$ git add READM...原创 2019-11-19 16:16:11 · 1573 阅读 · 0 评论 -
git忽略文件地址
git忽略文件地址Objective-C.gitignoregitignore原创 2019-11-19 16:18:12 · 140 阅读 · 0 评论 -
UserInterfaceState.xcuserstate没法被忽略
UserInterfaceState.xcuserstate没法被忽略1、git status$ git statusOn branch mxYour branch is ahead of 'origin/mx' by 1 commit. (use "git push" to publish your local commits)Untracked files: (use "g...原创 2019-11-20 18:51:12 · 478 阅读 · 0 评论 -
git学习笔记(二)
1、提交错了怎么处理master本来是管理线上代码版本的,不做开发使用,由于疏忽,在master上做了修改,怎么办?(1)如果做得这些修改不需要保存的话,可以回退版本,然后强制修改master分支://回退git reset --hard [commit id]//强制将当前所在的HEAD推送到远程分支,会丢失远程分支上HEAD之后的提交git push origin HEAD --...原创 2019-09-02 18:29:15 · 136 阅读 · 0 评论 -
git学习笔记(一)
git开发中一直结合使用命令行和sourceTree,感觉其各有好处。虽然已经会使用git,再次学习,还是发现很多命令生疏了,随便记了下来。简介git是分布式版本控制系统,有远程仓库和本地仓库。搞一个主服务器,上面创一个git仓库,我们叫他远程仓库,每个人电脑上克隆下来一份远程仓库,叫做本地仓库。在自本地仓库进行工作,之后将远程仓库的内容更新到本地仓库,将本地仓库的修改推送到远程仓库。...原创 2018-12-29 15:32:16 · 205 阅读 · 0 评论