git本地上传到远程分支
时间: 2023-10-22 10:21:07 浏览: 163
首先,将本地代码提交到本地 Git 仓库中:
```
git add .
git commit -m "提交信息"
```
然后将本地代码推送到远程分支中:
```
git push <远程仓库名> <本地分支名>:<远程分支名>
```
例如,如果你想将本地的 `master` 分支推送到远程仓库的 `main` 分支,命令为:
```
git push origin master:main
```
如果远程分支不存在,Git 将会自动创建一个新的分支。
阅读全文