其他分享
首页 > 其他分享> > 如何使用git把本地代码上传到远程仓库

如何使用git把本地代码上传到远程仓库

作者:互联网

如何使用git把本地代码上传到远程仓库

Git 全局设置:
git config --global user.name "xxx"
git config --global user.email "xxx@163.com"

初始化
git init

查看当前仓库状态
git status

将本地的仓库关联到远程仓库上
git remote add origin https://gitee.com/xxx_system/xxx.git

将码云上的仓库pull到本地文件夹
git pull --rebase origin master
git pull origin master

git add .
提交备注信息
git commit -m "初始化提交"
代码上传到远程仓库
git push -u origin master

标签:origin,pull,git,仓库,xxx,--,远程
来源: https://www.cnblogs.com/sunline/p/16574441.html