美文网首页
GitHub使用教程和码云

GitHub使用教程和码云

作者: 苹果上的小豌豆 | 来源:发表于2018-07-29 15:38 被阅读0次

    1.创建GitHub账号

     2.Create a new repository

     3.复制GitHub地址,打开终端,cd到文件夹。git clone 地址

    4.创建一个xcode项目,将项目地址选择在cd的那个文件夹。

    方法一:(不推荐)

     5.上传到GitHub上,点击source control ,点击commit,勾选下面push ,上传,输入GitHub账号就上传完毕。

    方法二:

    git init (git 仓库的初始化)

    git add . ** (这里注意:add 空格 再加 .)

    git status (查看add 是否成功)

    git commit -m "描述" (“ ” 引号里面输入你的描述 随意)

    git push origin master ** (最后push到GitHub上,输入账号和密码)


    # git 回滚远程仓库

    git reset --hard HEAD^

    git push origin master -f

    #1. 先删除原有的.DS_Store:

    find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch

    相关文章

      网友评论

          本文标题:GitHub使用教程和码云

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