美文网首页
Git初始化

Git初始化

作者: jsnow0613 | 来源:发表于2016-03-06 10:23 被阅读33次

    git使用步骤

    1. 下载git
    2. git config --global user.name "Your name"
      git config --global user.email "Your email"
    3. 在需要同步的根目录下git init

    远程仓库

    1. 创建SSH Key
      ssh-keygen -t rsa -C "youremail@example.com"
    2. 获取公钥,放进gitlab服务器
    3. 关联git服务器:git remote add origin git@github.com:michaelliao/learngit.git
    4. 推送到远程库:git push -u origin master,首次使用时 -u是为了关联远程库和本地的master

    相关文章

      网友评论

          本文标题:Git初始化

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