Git 仓库迁移 本文以从 GitHub 仓库迁移到 Gitee 仓库为例进行操作演示。 GitHub 仓库地址(要迁移的仓库):https://github.com/Zlogn/UnityTest.git Gitee 仓库地址(新建的空仓库):https://gitee.com/Zlogn/UnityTest.git 1. git clone –bare1git clone --bare https://gith 2020-05-24 Git Git
归档 Xcode_10.2.1.xip 不是来自Apple 在安装 Xcode_10.2.1.xip 的时候,双击解压弹窗该提示归档 “Xcode_10.2.1.xip” 不是来自Apple。 原因在于它的认证凭证早已过期,解决方法也很简单,把系统日期改成几年前的,比如 2018 年,但也不能太早,尽量在该压缩包创建的大概时间段。 2020-05-20 Mac Mac
使用 Git 管理 SVN 仓库 git svn clone使用 git svn clone [svn_url] 命令即可完成从 svn 仓库导入本地,由于该命令会将 svn 仓库中所有版本的更新都会同步到本地仓库,如果项目更新次数过多会花费很长的时间。 git svn dcommit通过 git commit -am ‘commit_info’ 来把工作区的修改提交到本地仓库,然后通过 git svn dcommit 命令将本地 2020-05-19 Git Git SVN
SVN 版本库备份 SVN 版本库备份不宜采用普通的文件拷贝方式,除非你备份的时候将版本库暂停,否则备份出来的库是不可用的,因此最好是用 SVN 本身提供的功能来进行备份。 1svnadmin hotcopy path/to/repository path/to/backup 例如: 全量备份: 1svnadmin hotcopy D:\Repositories\SVNTest E:\SVNBackup\SVNT 2020-05-19 Server SVN Server
iOS 开发之证书、打包上架流程、p12文件 一、证书iOS开发相关的证书有很多种,iOS开发证书(iOS App Development)、iOS发布证书(iOS Distribution (App Store and Ad Hoc))、网站推送ID证书(Website Push ID Certificate)、Apple Pay付款处理证书(Apple Pay Payment Processing Certificate)等等。Xcode 2020-05-17 iOS iOS