番外:基础配置
//1.配置全局的git仓库的 用户名 和 邮箱
git config --global user.name '仓库的账号名'
git config --global user.email '绑定的邮箱'
本地SSH配置与关联:https://mp-new.csdn.net/mp_blog/creation/editor/90054236
第一步:建立远程仓库(码云、GitHub等)
第二步:进入到对应的项目文件夹根目录中:
git init //生成.git文件
3、将本地和远程厂库关联起来
git remote add origin 远程仓库地址
4、将本地代码推送到库上
git add .
git commit -m '提交信息' -n
git push -u origin master //第一次初始化仓库时:-u 之后不用
5.在第四步时可能会报错:
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.
原因:是因为github中的README.md文件不在本地代码目录中,可以通过如下命令进行代码合并
git pull --rebase origin master
//之后重复第四步最后的命令:
git push -u origin master
出现这样的代码,即为拉取readme成功:
$ 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
6.最后运行代码:
git push origin master //注意此刻推得分支即为想要将文件放的分支
另外::::
上面报错:
git push --set-upstream 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'.
————————————————
版权声明:本文为CSDN博主「绝世唐门三哥」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/COCOLI_BK/article/details/98730007