搜索

首页  >  问答  >  正文

git怎么初始化呢?

在github上建了一个项目,本地也有代码,本地用git init初始化了一下,请问然后怎么将本地的代码提交到github上呢?

伊谢尔伦伊谢尔伦2793 天前616

全部回复(4)我来回复

  • 阿神

    阿神2017-05-02 09:26:31

    请看 帮助 https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/

    回复
    0
  • 迷茫

    迷茫2017-05-02 09:26:31

    点开你在 github 上的项目链接,如果是空的,会有详细步骤

    回复
    0
  • 滿天的星座

    滿天的星座2017-05-02 09:26:31

    1 本地生成ssh-key: ssh-keygen -t rsa -C "$userEmail"
    2 github帐号上粘贴公钥
    3 本地添加远程库: git remote add origin git@xxxxx.git
    4 测试是否成功-->commit一个文件,然后push,看github上是否有

    5 以后在此电脑上连接别的github库时,1,2步骤省略

    回复
    0
  • 習慣沉默

    習慣沉默2017-05-02 09:26:31

    1 本地生成秘要 : $ ssh-keygen -t rsa -C "youremail@example.com"
    2 然后cd .ssh 进入文件夹 vim id_rsa.pub 将秘要粘贴到github 中(位于“Account settings”,“SSH Keys”页面)
    3 关联本地与远程长裤(注意修改地址):$ git remote add origin git@github.com:michaelliao/learngit.git
    4 $ git push -u origin master
    5 以后推送直接使用命令 :$ git push origin master

    回复
    0
  • 取消回复