美文网首页
git 上传

git 上传

作者: 蓦然浅笑_4f03 | 来源:发表于2018-06-15 16:56 被阅读0次

    git config --global user.name "蓦然浅笑"

    git config --global user.email "1277719604@qq.com"

    创建 git 仓库:

    mkdir easycd easygit inittouch README.mdgit add README.mdgit commit -m "first commit"git remote add origin https://gitee.com/zoubiao/easy.gitgit push -u origin master

    已有项目?

    cd existing_git_repogit remote add origin https://gitee.com/zoubiao/easy.gitgit push -u origin master

    相关文章

      网友评论

          本文标题:git 上传

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