美文网首页
2020-11-23-git项目部署

2020-11-23-git项目部署

作者: pluskok | 来源:发表于2020-11-23 18:24 被阅读0次

    项目部署

    1.创建仓库ZNWB,复制项目路径 https://gitee.com/xxx/xxx.git
    2.选择文件夹位置,git clone https://gitee.com/xxx/xxx.git
    3.cd ZNWB/
    4.touch .gitignore //创建项目时选择swift.gitignore可省略3-9步骤
    5.open .gitignore //(如需将pods添加到.gitignore则取消注释 Pods)
    6.github 搜索swift.ignore文件将内容复制到.gitignore中保存
    7.git add .
    8.git commit -m "添加忽略文件"
    9.git push   //(同步到远程仓库)
    10.Xcode创建项目并Source Control Commit/push到远程仓库 "初始化项目"
    

    相关文章

      网友评论

          本文标题:2020-11-23-git项目部署

          本文链接:https://www.haomeiwen.com/subject/nppviktx.html