番外:基礎配置
//1.配置全局的git倉庫的 用戶名 和 郵箱
git config --global user.name '倉庫的賬號名'
git config --global user.email '綁定的郵箱'
本地SSH配置與關聯(lián):https://mp-new.csdn.net/mp_blog/creation/editor/90054236
第一步:建立遠程倉庫(碼云晃择、GitHub等)
第二步:進入到對應的項目文件夾根目錄中:
git init? //生成.git文件
3断部、將本地和遠程廠庫關聯(lián)起來
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?
出現(xiàn)這樣的代碼,即為拉取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?
出現(xiàn)這樣的代碼俊嗽,本地項目推到遠程即告一段落^_^:
$ 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.
當你確定倉庫里面內(nèi)容不用時雾家,可強制推送:
?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博主「絕世唐門三哥」的原創(chuàng)文章,遵循CC 4.0 BY-SA版權協(xié)議绍豁,轉(zhuǎn)載請附上原文出處鏈接及本聲明芯咧。
原文鏈接:https://blog.csdn.net/COCOLI_BK/article/details/98730007