From a8d179dc668564a14b7c57ebcde52ed8ae67516f Mon Sep 17 00:00:00 2001
From: jhy <2584851718@qq.com>
Date: Tue, 7 May 2024 13:45:27 +0800
Subject: [PATCH] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E6=AC=A1=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Linux学习笔记.md | 0
Linux+git学习笔记/git基本操作.md | 47 +++++++++++++++++++
NotesUESTC | 1 -
git基本操作.md | 0
4 files changed, 47 insertions(+), 1 deletion(-)
rename Linux学习笔记.md => Linux+git学习笔记/Linux学习笔记.md (100%)
create mode 100644 Linux+git学习笔记/git基本操作.md
delete mode 160000 NotesUESTC
delete mode 100644 git基本操作.md
diff --git a/Linux学习笔记.md b/Linux+git学习笔记/Linux学习笔记.md
similarity index 100%
rename from Linux学习笔记.md
rename to Linux+git学习笔记/Linux学习笔记.md
diff --git a/Linux+git学习笔记/git基本操作.md b/Linux+git学习笔记/git基本操作.md
new file mode 100644
index 0000000..10762c1
--- /dev/null
+++ b/Linux+git学习笔记/git基本操作.md
@@ -0,0 +1,47 @@
+### 1.git安装教程
+
+教程链接:https://zhuanlan.zhihu.com/p/443527549
+
+### 2.git基本操作命令
+
+#### 2.1 git常用命令
+
+> - git init 初始化项目
+> - git status 查看当前目录下文件的状态
+> - git add (文件名 | .)添加到暂存盘,文件名代表某文件,"."代表所有文件
+> - git commit -m "备注" 提交到git本地仓库,产生新版本,引号中的备注必须写
+> - git log 查看所有提交的记录
+> - git clone 链接 克隆远程仓库,进行连接
+> - git checkout -b [branch] 新建一个分支,并切换到该分支
+> - git checkout [branch] 切换到某分支
+> - git branch -d [branch-name] 删除分支
+> - git merge [branch] 合并指定分支到当前分支
+> - git push 将本地仓库push到远程仓库
+
+#### 2.2 流程详解
+
+1.打开想要上传项目的文件根目录,右击Git Bash Here,输入命令 **git init**:
+
+``` $ git init ```
+
+![image-20240507131840732](C:\Users\dd\AppData\Roaming\Typora\typora-user-images\image-20240507131840732.png)
+
+发现在根目录中出现了一个 **.git** 文件,表明此项目已被git管理。
+
+2.通过` git clone "仓库链接"`与远程仓库进行连接:
+
+![image-20240507131741797](C:\Users\dd\AppData\Roaming\Typora\typora-user-images\image-20240507131741797.png)
+
+3. 连接成功后,添加项目到暂存区,并提交项目到本地仓库,中间可以使用 **git status** 命令查看文件状态:![image-20240507131929421](C:\Users\dd\AppData\Roaming\Typora\typora-user-images\image-20240507131929421.png)![image-20240507131951291](C:\Users\dd\AppData\Roaming\Typora\typora-user-images\image-20240507131951291.png)![image-20240507132003856](C:\Users\dd\AppData\Roaming\Typora\typora-user-images\image-20240507132003856.png)
+
+ 当使用用` git status` 查看状态显示“没有需要提交的,工作树干净”时,就说明项目已经全部提交至本地仓库。
+
+4. 使用命令 `git checkout -b dev` 创建dev分支并切换到该分支下,在分支上进行操作;在这之前或之后都可以使用命令 `git branch` 查看仓库的分支都有哪些![image-20240507133520475](C:\Users\dd\AppData\Roaming\Typora\typora-user-images\image-20240507133520475.png)
+
+5. 操作这么多命令后,可能已经断开了与远程的连接,使用命令 `git remote -v`查看,如果为空,则使用 `git remote add origin 链接` 再次与远程仓库进行连接![image-20240507134004040](C:\Users\dd\AppData\Roaming\Typora\typora-user-images\image-20240507134004040.png)
+
+ 出现如上图所示,则重新连接成功!
+
+6. 把master分支合并到dev分支,进行add和commit,最后push到远程
+
+7. 查看项目是否上传成功。
\ No newline at end of file
diff --git a/NotesUESTC b/NotesUESTC
deleted file mode 160000
index 14a788c..0000000
--- a/NotesUESTC
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 14a788c79be20ea24a8f4437df3e8189a792b568
diff --git a/git基本操作.md b/git基本操作.md
deleted file mode 100644
index e69de29..0000000