初始本地仓库推送到远程仓库-git

背景(问题描述)

下面的git的操作符合的情况是:

  • ①本地初始化一个仓库,但是还没有和远程仓库相关联;

  • ②远程仓库也刚刚创建,里面啥也没有

然后目前就想将本地的仓库的内容和远程仓库相关联并推送到远程仓库里面。

1、初始化:

shell 复制代码
86189@LAPTOP-GAHM48A0 MINGW64 /d/start_java/XinQiUtilsOrDemo/restTemplateDemo
$ git init
Initialized empty Git repository in D:/start_java/XinQiUtilsOrDemo/restTemplateDemo/.git/

86189@LAPTOP-GAHM48A0 MINGW64 /d/start_java/XinQiUtilsOrDemo/restTemplateDemo (master)
$ git add .
warning: in the working copy of 'SimpleRestTemplateProject/moduleOne/pom.xml', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'SimpleRestTemplateProject/moduleSecond/pom.xml', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'SimpleRestTemplateProject/pom.xml', LF will be replaced by CRLF the next time Git touches it

86189@LAPTOP-GAHM48A0 MINGW64 /d/start_java/XinQiUtilsOrDemo/restTemplateDemo (master)
$ git commit -m "add easy demo"
[master (root-commit) ba705e9] add easy demo
 11 files changed, 263 insertions(+)
 create mode 100644 SimpleRestTemplateProject/README.md
 create mode 100644 SimpleRestTemplateProject/moduleOne/pom.xml
 create mode 100644 SimpleRestTemplateProject/moduleOne/src/main/java/com/xinqi/xinqidev/ModuleOneApplication.java
 create mode 100644 SimpleRestTemplateProject/moduleOne/src/main/java/com/xinqi/xinqidev/config/RestTemplateConfiguration.java
 create mode 100644 SimpleRestTemplateProject/moduleOne/src/main/java/com/xinqi/xinqidev/controller/HelloController.java
 create mode 100644 SimpleRestTemplateProject/moduleOne/src/main/resources/application.yml
 create mode 100644 SimpleRestTemplateProject/moduleSecond/pom.xml
 create mode 100644 SimpleRestTemplateProject/moduleSecond/src/main/java/com/xinqi/xinqidev/ModuleSecondApplication.java
 create mode 100644 SimpleRestTemplateProject/moduleSecond/src/main/java/com/xinqi/xinqidev/controller/HelloController.java
 create mode 100644 SimpleRestTemplateProject/moduleSecond/src/main/resources/application.yml
 create mode 100644 SimpleRestTemplateProject/pom.xml

2、配置并推送到最新仓库

shell 复制代码
86189@LAPTOP-GAHM48A0 MINGW64 /d/start_java/XinQiUtilsOrDemo/restTemplateDemo (master)
$ git remote add origin git@gitee.com:flowers-bloom-is-the-sea/rest-template-demo.git

86189@LAPTOP-GAHM48A0 MINGW64 /d/start_java/XinQiUtilsOrDemo/restTemplateDemo (master)
$ git pull origin master --allow-unrelated-histories
From gitee.com:flowers-bloom-is-the-sea/rest-template-demo
 * branch            master     -> FETCH_HEAD
Merge made by the 'ort' strategy.
 README.en.md | 36 ++++++++++++++++++++++++++++++++++++
 README.md    | 37 +++++++++++++++++++++++++++++++++++++
 2 files changed, 73 insertions(+)
 create mode 100644 README.en.md
 create mode 100644 README.md

86189@LAPTOP-GAHM48A0 MINGW64 /d/start_java/XinQiUtilsOrDemo/restTemplateDemo (master)
$ git push -u origin master
Enumerating objects: 36, done.
Counting objects: 100% (36/36), done.
Delta compression using up to 8 threads
Compressing objects: 100% (23/23), done.
Writing objects: 100% (35/35), 4.40 KiB | 644.00 KiB/s, done.
Total 35 (delta 4), reused 0 (delta 0), pack-reused 0
remote: Powered by GITEE.COM [GNK-6.4]
To gitee.com:flowers-bloom-is-the-sea/rest-template-demo.git
   a083ace..3fdcf23  master -> master
branch 'master' set up to track 'origin/master'.

3、小结:

shell 复制代码
git init
git add .
git commit -m "first commit"
git remote add origin git_url
git pull origin master --allow-unrelated-histories
git push -u origin master
相关推荐
不说别的就是很菜1 小时前
【前端面试】Git篇
前端·git
~~李木子~~8 小时前
通过git上传项目到码云和GitHub操作手册
git·gitee·github
songyuc11 小时前
【Git】请帮忙解释一下“git reset”
git·elasticsearch
Komorebi_999915 小时前
使用Git创建自己的分支的操作指南
git
~~李木子~~18 小时前
git仓库管理
git
秦jh_18 小时前
【git】远程操作
git
tianming20191 天前
Gogs迁移到Gitea不完全指南
git·后端
QT 小鲜肉1 天前
【Git、GitHub、Gitee】GitLab的概念、注册流程、远程仓库操作以及高级功能详解(超详细)
git·qt·gitee·gitlab·github
你的人类朋友1 天前
✍️记录自己的git分支管理实践
前端·git·后端
wVelpro2 天前
git diff 输出空,但 git status 提示 Motified(M)解决办法
git