git config --global user.name "geniusChinaHN"
git config --global user.email "12705243+geniuschinahn@user.noreply.gitee.com"
cd ~/robot_ws
#git init#创建原始仓库时候用
git add .
git commit -m "上传文件内容描述"
#git remote add robot_ws https://gitee.com/geniuschinahn/robot_ws.git ##创建原始仓库时候用
git push
把这个保存成一个BASE文件执行就差不多了
Git 全局设置:
git config --global user.name "geniusChinaHN" git config --global user.email "12705243+geniuschinahn@user.noreply.gitee.com"
创建 git 仓库:文章来源:https://www.toymoban.com/news/detail-774998.html
mkdir robot_ws cd robot_ws git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/geniuschinahn/robot_ws.git git push -u origin "master"
已有仓库?文章来源地址https://www.toymoban.com/news/detail-774998.html
cd existing_git_repo git remote add origin https://gitee.com/geniuschinahn/robot_ws.git git push -u origin "master"
到了这里,关于将本地工作空间robot_ws上传到gitee仓库的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!