admin 发表于 2021-12-10 09:45:02

gitee 上传仓库

centos上安装git
# git,yum -y install git
复制项目到本地
# git clone 仓库地址http://开头的

设置上传人的名字和密码
# git config --global user.name "oscml"
# git config --global user.email "a@w1.hk"


上传本地数据到仓库
# git add --all .或者 # git add .涉及到删除目录时 加 --all
# git commit -m "del"
# git push origin master# git push -f origin master 强制上传






页: [1]
查看完整版本: gitee 上传仓库