美文网首页
Git提交本地仓库

Git提交本地仓库

作者: DKChain | 来源:发表于2016-07-22 12:54 被阅读0次
    1. github上建立新的仓库,方便起见,一下均用repo代替
    2. 进入工程目录
    3. 输入以下命令
    git init
    git remote add origin git@github.com:Username/repo.git
    git add .
    git commit -m "Comment"
    git push -u origin master
    

    相关文章

      网友评论

          本文标题:Git提交本地仓库

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