命令行指引
您还可以按照以下说明从计算机中上传现有文件。
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