使用git命令行把本地项目上传到远程仓库

一、在远程新建一个repository;

二、打开命令行进入项目目录下,初始化本地仓库

git init

三、关联远程仓库和本地仓库

git remote add origin http://gogs.xxx.com.cn/xxx/enterprise.git
四、添加项目到暂存区

git add .

五、提交项目

 git commit -m "xxx重写项目第一次提交"

六、推送到远程

git push origin master

此时报错:

To http://gogs.xxx.com.cn/xxx/enterprise.git
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to 'http://gogs.xxx.com.cn/xxx/enterprise.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

本地版本和主干上的有差异,这时要先解决冲突:

git pull --rebase origin master

再次执行第六步成功。

猜你喜欢

转载自blog.csdn.net/noob9527/article/details/90081046