美文网首页
命令行指引

命令行指引

作者: 质检员晓东 | 来源:发表于2020-08-21 13:27 被阅读0次

    命令行指引

    您还可以按照以下说明从计算机中上传现有文件。

    Git 全局设置

    git config --global user.name "yanzhaoyl"

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

    创建一个新仓库

    git clonehttps://gitlab.com/yanzhaoyl/vueweb.gitcd vuewebtouch README.mdgit add README.mdgit commit -m "add README"git push -u origin master

    推送现有文件夹

    cd existing_foldergit initgit remote add originhttps://gitlab.com/yanzhaoyl/vueweb.gitgit add .git commit -m "Initial commit"git push -u origin master

    推送现有的 Git 仓库

    cd existing_repogit remote rename origin old-origingit remote add originhttps://gitlab.com/yanzhaoyl/vueweb.gitgit push -u origin --all

    git push -u origin --tags

    相关文章

      网友评论

          本文标题:命令行指引

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