使用 git 提交本地代码到 gitee

在 gitee 上创建一个仓库,得到仓库地址。cd 到代码根目录:

初始化项目:

1
git init

配置好 git config 后提交项目代码到暂存区:

1
git add .

填写备注:

1
git commit -m "1"

将远程仓库与本地代码进行关联:

1
git remote add origin https://gitee.com/你的仓库地址/xxx.git

push 代码:

1
git push -u origin master

如果 push 时提示:更新被拒绝,因为远程仓库包含您本地尚不存在的提交。

那就可以采用强制使用 push:

1
git push -u origin +master

参考

  1. mac上使用git提交本地代码到gitee仓库

  2. 更新被拒绝,因为远程仓库包含您本地尚不存在的提交

实际上是远程仓库和本地内容不一致导致的,原因是新建远程仓库的时候新建了 LICENSE 文件和 .gitignore,这是本地没有的。

所以正确操作是下拉代码后,再 push 代码:

1
git pull origin master

需要注意的是,git pull 命令会自动合并代码,如果出现冲突需要手动解决。如果不想自动合并代码,可以使用 git fetch 命令先将远程仓库的代码拉取到本地,再使用 git merge 命令进行合并。

再次推送更新,执行下面即可:

1
2
3
git add .
git commit -m ""
git push origin -u master

使用 git 提交本地代码到 gitee
https://wonderhoi.com/2024/02/28/使用-git-提交本地代码到-gitee/
作者
wonderhoi
发布于
2024年2月28日
许可协议