GitHub
咚个里个呛
GitHub链接:https://github.com/PaulZhe
展开
-
初次github合作开发时遇到的坑
前言寒假开始了自己的第一个项目,同时也是自己第一次开始合作开发,git上传代码时走了不少弯路,在此将这些坑记录下来。参考博客git提交时报错:Updates were rejected because the tip of your current branch is behind记Git报错-refusing to merge unrelated histories切记首先我们...原创 2019-01-19 17:48:01 · 998 阅读 · 0 评论 -
解决git stash pop后或者合作开发远程拉取主分支后Xcode中Info.plist的冲突
转自:解决git stash pop后Xcode中Info.plist的冲突:The data couldn’t be read because it isn’t in the correct format去Xcode中尝试打开info.plist,结果打不开:The data couldn’t be read because it isn’t in the correct format....转载 2019-02-25 00:06:48 · 1551 阅读 · 0 评论 -
解决拉取远程分支后出现.xcodeproj Couldn't load project的问题
问题拉取远程分支后与本地仓库出现冲突导致工程文件打不开解决方案找到项目的. xcodeproj文件,显示包内容,找到project.pbxproj文件,修改冲突。解决冲突方式可参考我之前的一篇博客:添加解决git stash pop后或者合作开发远程拉取主分支后Xcode中Info.plist的冲突链接描述...原创 2019-04-21 00:32:53 · 2557 阅读 · 0 评论 -
git错误记录:git-lfs filter-process: git-lfs: command not found
参考文章The Git init & fetch approach breaks Git LFS问题描述在pull远程主分支代码时,因为合作开发的伙伴上传了个静态库,大文件拉取不下来,出现了git-lfs filter-process: git-lfs: command not foundfatal: The remote end hung up unexpectedly...原创 2019-05-05 21:54:57 · 27242 阅读 · 0 评论 -
Xcode10 #import 不提示头文件
Xcode --> File --> Workspace Settings --> Build System --> Legacy Build System引用自这里转载 2019-05-19 21:14:51 · 179 阅读 · 0 评论 -
git错误整理——Git error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
错误1:Git: fatal: The remote end hung up unexpectedly解决办法:git config --global http.postBuffer 1048576000git config --global http.postBuffer 1048576000错误2:Git error: RPC failed; curl 56 LibreSSL SS...转载 2019-05-19 21:22:46 · 41732 阅读 · 0 评论 -
Git 忽略提交 .gitignore
添加 .gitignore 配置文件在我们平时使用 Git 进行版本管理的时候,上传代码时常常会将 Finder 用来存储这个文件夹的显示属性的.DS_Store 文件上传到GitHub上去,这样在合作开发时很不方便,那么如何忽略追踪这些没有用到文件呢?这时,我们会通过创建一个 .gitignore 配置文件,写入特定规则,来指定 Git 忽略追踪某个目录或文件,不将其纳入版本管理,减少线上代...原创 2019-06-20 15:32:56 · 388 阅读 · 0 评论