初始本地仓库推送到远程仓库-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
相关推荐
拾-光7 小时前
【Git】命令大全:从入门到高手,100 个最常用命令速查(2026 版)
java·大数据·人工智能·git·python·elasticsearch·设计模式
Snooker_14610 小时前
TRAE、VSCode上进行git管理
ide·git·vscode
zincsweet13 小时前
Git开发工具教程
git
yuyuyui13 小时前
Git实战覆盖98%日常开发场景
git
Eloudy15 小时前
git clone --mirror 同步桥
大数据·git
cxwl3sxl16 小时前
重装系统后GIT仓库修复
git
OYangxf16 小时前
Git速查命令
大数据·git·elasticsearch
OYangxf16 小时前
Git Common Errors
大数据·git·elasticsearch
Mike_66616 小时前
git@gitlab-rdc.xxxxx.com: Permission denied (publickey).fatal: 无法读取远程仓库。
git·elasticsearch·gitlab
zh路西法16 小时前
【git一键push脚本】基于Windows bat脚本的一键git提交脚本
windows·git·elasticsearch