赞
踩
前言
本文开始之前,需要先进行基础配置,将本地账户用户名 邮箱与远程git绑定。
git init // 生成.git文件
git remote add origin 远程仓库地址
git add .
git commit -m '提交信息' -n
git push -u origin master //第一次初始化仓库时:-u 之后不用
To https://gitee.com/all-ko/react.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://gitee.com/all-ko/react.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.
原因:远程仓库中的README.md文件不在本地代码目录中,可以通过如下命令进行代码的合并
git pull --rebase origin master
//之后重复第四步最后的命令:
git push -u origin master
出现这样的代码即为成功:
$ git pull --rebase origin master
warning: no common commits
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (4/4), done.
From https://gitee.com/all-ko/react
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
First, rewinding head to replay your work on top of it...
Applying: 首次提交
接着运行
git push -u origin master
出现这样的代码即为成功,远程推送项目代码告一段落。
$ git push -u origin master
Enumerating objects: 17, done.
Counting objects: 100% (17/17), done.
Delta compression using up to 8 threads
Compressing objects: 100% (14/14), done.
Writing objects: 100% (16/16), 74.71 KiB | 1.36 MiB/s, done.
Total 16 (delta 0), reused 0 (delta 0)
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
最后一行代码
git push origin master //注意此刻推得分支即为想要将文件放的分支
Administrator@WIN-QTM6B4FMB6V MINGW64 /d/前端项目/webstromfiles/huaanwares (master)
$ git push --set-upstream origin master
To https://gitee.com/all-ko/huaan_statistical_software.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://gitee.com/all-ko/huaan_statistical_software.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 push --set-upstream origin master -f
推送成功代码显示如下。
Administrator@WIN-QTM6B4FMB6V MINGW64 /d/前端项目/webstromfiles/huaanwares (master)
$ git push --set-upstream origin master -f
Enumerating objects: 69, done.
Counting objects: 100% (69/69), done.
Delta compression using up to 4 threads
Compressing objects: 100% (59/59), done.
Writing objects: 100% (69/69), 405.77 KiB | 7.38 MiB/s, done.
Total 69 (delta 0), reused 0 (delta 0)
remote: Powered by GITEE.COM [GNK-3.8]
To https://gitee.com/all-ko/huaan_statistical_software.git
+ ef6516a...4b29d58 master -> master (forced update)
Branch 'master' set up to track remote branch 'master' from 'origin'.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。