将本地工作空间robot_ws上传到gitee仓库

git config --global user.name "geniusChinaHN"
git config --global user.email "[email protected]"
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文件执行就差不多了

将本地工作空间robot_ws上传到gitee仓库_第1张图片

Git 全局设置:

git config --global user.name "geniusChinaHN"
git config --global user.email "[email protected]"

创建 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"

你可能感兴趣的:(gitee,ros2,保存本地工作空间到gitee)