将本地工作空间robot_ws上传到gitee仓库
2023-12-30 17:37:04
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 仓库:
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"
已有仓库?
cd existing_git_repo git remote add origin?https://gitee.com/geniuschinahn/robot_ws.git git push -u origin "master"
文章来源:https://blog.csdn.net/geniusChinaHN/article/details/135306119
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!