1
2
3
4
5
作者:李晓辉

微信联系:Lxh_Chat

联系邮箱: 939958092@qq.com

基础架构即代码

基础架构即代码(IaC)其实就是把基础设施的管理和配置转成代码。想象一下,就像写软件一样,所有的服务器、网络和服务配置都能用代码来管理,这样就可以像开发软件一样做到版本控制、自动化部署和可重复的操作。这种方式不仅让我们管理基础设施更高效、准确,而且也让团队之间的协作变得更顺畅,环境配置也更统一。

说到Ansible,它把IaC的理念发挥得淋漓尽致。Ansible用简单又强大的Playbook语言,把配置、安装软件、管理服务这些复杂的操作都变成了易读、好维护的YAML代码。你可以把这些Playbook保存在像Git这样的版本控制系统里,这样对基础设施的变更就能追溯历史,完全有记录。而且,Ansible没有代理的设计,不需要在每台机器上安装额外的软件就能高效管理大量主机。

如果你用Ansible来做IaC,就能轻松实现跨环境的一致性部署。无论是开发环境、测试环境还是生产环境,都能用相同的Playbook进行配置管理,避免因为环境不一致而出现的问题。再加上Ansible模块化的设计和丰富的生态系统,你还可以根据需要扩展和定制自动化任务,让管理变得更加灵活和可扩展。总的来说,IaC在Ansible中的应用,不仅改变了传统的IT运维方式,还为现代云原生和DevOps的工作流提供了很强的支持。

Git 简介

Git 是一种 分布式版本控制系统(DVCS),让你可以协作管理项目中的文件更改。使用 Git 有很多好处:

  • 你可以查看和恢复文件的早期版本。
  • 可以比较同一个文件的两个版本,看到具体有哪些更改。
  • Git 会记录每次更改的详细信息,谁在什么时候做了哪些更改。
  • 多个用户可以同时修改文件,解决冲突并合并各自的更改。

通过 Git,你可以从 远程存储库 克隆一个已有的共享项目开始。克隆操作会创建一个本地存储库,它是远程存储库的 完整副本,包含了项目文件的 完整历史记录,而不仅仅是项目文件的最新快照。

你可以在 工作树 中编辑文件,工作树就是项目的一个具体版本。然后,你可以将修改后的文件放入 暂存区域,准备提交差异到本地存储库,但此时本地存储库并未影响到共享的远程存储库。

当你准备好分享你的修改时,可以将更改 推送 到远程存储库。反过来,当你需要将远程存储库中的最新更改更新到本地存储库时,可以 拉取 这些更改并合并到你的本地副本中。

在 Git 中,工作树中的文件可以处于三种状态:

状态描述
已修改文件已经在工作树中编辑,但与存储库中的最新版本不同。
已暂存修改后的文件已经添加到暂存区,准备作为一个整体提交,但尚未提交。
已提交文件的修改已提交到本地存储库,成为版本历史的一部分。

将⽂件提交到本地存储库后,该⽂件可以推送到远程存储库或由远程存储库拉取。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
+-----------------+
| 工作树 |
| (Working Tree) |
+-----------------+
|
v
+-----------------+
| 暂存区域 |
| (Staging Area) |
+-----------------+
|
v
+------------------------+
| 本地存储库 |
| (Local Repository) |
+------------------------+
|
v
+------------------------+
| 远程存储库 |
| (Remote Repository) |
+------------------------+

初始 Git 配置

Git 会记录每次提交的用户信息,包括用户的名称和电子邮件地址。这些信息会保存到 ~/.gitconfig 文件中,用来标识每次提交的作者。

你可以通过以下命令设置你的用户名和电子邮件:

1
2
[student@workstation ~]$ git config --global user.name 'Xiaohui Li'
[student@workstation ~]$ git config --global user.email 939958092@qq.ocm

git-prompt.sh 脚本是 Git 附带的一个实用工具,它可以帮助我们在命令行提示符中显示有关 Git 仓库的状态。通过启用这个脚本,你可以在每次命令行提示符中看到当前 Git 仓库的分支名以及工作树的状态,比如是否有未提交的更改、是否有待推送的更改等。

1
2
3
4
[student@workstation ~]$ source /usr/share/git-core/contrib/completion/git-prompt.sh
[student@workstation ~]$ export GIT_PS1_SHOWDIRTYSTATE=true
[student@workstation ~]$ export GIT_PS1_SHOWUNTRACKEDFILES=true
[student@workstation ~]$ export PS1='[\u@\h \W$(declare -F __git_ps1 &>/dev/null && __git_ps1 " (%s)")]\$ '
  • \u:当前用户的用户名
  • \h:主机名
  • \W:当前目录的名称
  • $(...):运行命令并将其输出插入到提示符中
  • declare -F __git_ps1:检查 __git_ps1 是否已定义(避免报错,如果没有加载 git-prompt.sh 脚本的话)
  • __git_ps1 " (%s)":显示 Git 分支名和当前状态(如有更改或未跟踪文件)
  • \$:显示提示符的 $#(取决于是否以超级用户身份运行)

我们来试试看,别忘了打这个lab start develop-git帮我们准备好git仓库用来演示

1
2
3
4
5
6
7
[student@workstation ~]$ git clone https://git.lab.example.com/student/develop-git.git
Cloning into 'develop-git'...
remote: Enumerating objects: 6, done.
remote: Counting objects: 100% (6/6), done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 6 (delta 0), reused 0 (delta 0), pack-reused 0
Receiving objects: 100% (6/6), done.

当我们切到目录中,会识别我们在main分支,修改了内容,有对应的提示

1
2
3
4
5
6
[student@workstation ~]$ cd develop-git/
[student@workstation develop-git (main)]$
[student@workstation develop-git (main)]$ touch lixiaohui.txt
[student@workstation develop-git (main %)]$
[student@workstation develop-git (main %)]$ git add lixiaohui.txt
[student@workstation develop-git (main +)]$
  • (branch *) 表⽰已修改了跟踪的⽂件
  • (branch +) 表⽰已修改了跟踪的⽂件并使⽤ git add 暂存了它
  • (branch %) 表⽰树中存在未跟踪的⽂件
  • 标记可组合使⽤,例如 (branch *+)

Git ⼯作流

从远程仓库下载代码—> 编辑代码—>暂存代码—>提交代码到本地仓库—>推送到远程仓库

git init与git init –bare

适用场景

git init:

  • 初始化一个新的本地开发项目。
  • 将一个已有的项目目录转换为 Git 仓库。
  • 适合个人开发,需要直接在工作目录中编辑文件。

从下面的示例来看,只是初始化了一个隐藏的.git目录,把这个目录当作自己的个人仓库用就行

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[student@workstation ~ (master #%)]$ mkdir lxhproject
[student@workstation ~ (master #%)]$ cd lxhproject
[student@workstation lxhproject (master #%)]$ git init
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /home/student/lxhproject/.git/
[student@workstation lxhproject (master #)]$ ls -a
. .. .git

git init –bare:

  • 创建一个服务器端的共享仓库,用于多人协作。
  • 作为中央仓库,接收来自多个开发者的推送。
  • 适合需要集中管理代码的场景。
特性git initgit init --bare
工作目录有工作树,用户可以直接编辑文件无工作树,仅包含 .git 目录
用途本地开发仓库,适合个人开发服务器端仓库,适合多人协作和推送
目录结构包含 .git 目录和工作树只包含 .git 目录的内容
是否支持直接编辑支持,用户可以在工作目录中直接修改文件不支持,所有操作通过命令行完成
是否适合推送推送时需要指定远程仓库作为远程仓库,接收来自其他仓库的推送

从下面的示例来看,压根没有隐藏的.git目录,直接就是其内的内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[student@workstation ~ (master #%)]$ mkdir ~/bareproject
[student@workstation ~ (master #%)]$ cd ~/bareproject
[student@workstation bareproject (master #%)]$ git init --bare
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /home/student/bareproject/

[student@workstation bareproject (BARE:master)]$ ls -a
. .. branches config description HEAD hooks info objects refs

git init

介绍:

git init 是 Git 中用于初始化一个普通(非裸)仓库的命令。它会在当前目录下创建一个.git 隐藏目录,该目录包含所有 Git 仓库的元数据(如对象存储、分支信息、配置文件等)。

特点:

  • 工作目录:包含 .git 目录,同时还有工作树(working tree),即用户可以直接在其中编辑文件的目录。

  • 用途:通常用于初始化一个新的本地开发仓库,或者将一个已有的项目目录转换为 Git 仓库。

  • 结构:

1
2
3
mkdir my-project
cd my-project
git init
1
2
3
4
project-folder/
├── .git/ # Git 仓库的元数据目录
├── file1.txt
├── file2.txt

git init –bare

介绍:

git init –bare 用于初始化一个“裸仓库”(bare repository)。裸仓库是一种特殊类型的 Git 仓库,它不包含工作树,仅包含 .git 目录的内容。

特点:

  • 无工作目录:没有工作树,所有操作都在 .git 目录中完成。

  • 用途:通常用于服务器端的仓库,用于存储多个客户端的推送内容,或者作为共享仓库供多人协作。

  • 结构:

1
2
3
mkdir my-bare-repo.git
cd my-bare-repo.git
git init --bare
1
2
3
mkdir my-bare-repo.git
cd my-bare-repo.git
git init --bare

⽤于添加和更新本地存储库内容的 Git ⼦命令

从远程仓库克隆代码

从http公开仓库克隆

1
[student@workstation ~ (master #%)]$ git clone https://git.lab.example.com/student/develop-git.git

git用户以ssh协议从git.lab.example.com服务器上下载名为project.git的仓库,需要提前设置ssh密钥

1
[student@workstation ~]$ git clone git@git.lab.example.com:project.git

git用户密码gitpass, 以http协议从git.lab.example.com服务器上下载名为lxh的仓库

1
[student@workstation ~]$ git clone http://git:gitpass@git.lab.example.com/lxh.git

提交代码到本地仓库

编辑了文件之后,需要先把文件提交到暂存区,然后再提交到本地仓库

git commit -a可以一次性完成add和commit,但是如果有新建的文件,就必须手工add

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[student@workstation ~ (master #%)]$ git clone https://git.lab.example.com/student/develop-git.git
Cloning into 'develop-git'...
remote: Enumerating objects: 6, done.
remote: Counting objects: 100% (6/6), done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 6 (delta 0), reused 0 (delta 0), pack-reused 0
Receiving objects: 100% (6/6), done.
[student@workstation ~ (master #%)]$ cd develop-git/
[student@workstation develop-git (main)]$ touch lixiaohui.txt
[student@workstation develop-git (main %)]$ git add lixiaohui.txt
[student@workstation develop-git (main +)]$ git commit -m 'lxh commit'
[main 9196c66] lxh commit
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 lixiaohui.txt

查看本地工作树文件状态

新建了文件会提示没有跟踪

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[student@workstation develop-git (main)]$ git status
On branch main
Your branch is ahead of 'origin/main' by 1 commit.
(use "git push" to publish your local commits)

nothing to commit, working tree clean
[student@workstation develop-git (main)]$ touch lxh-2.txt
[student@workstation develop-git (main %)]$ git status
On branch main
Your branch is ahead of 'origin/main' by 1 commit.
(use "git push" to publish your local commits)

Untracked files:
(use "git add <file>..." to include in what will be committed)
lxh-2.txt

nothing added to commit but untracked files present (use "git add" to track)

从暂存区撤销

从暂存区域中删除之前为下⼀次提交⽽添加的⽂件。 此命令对⼯作树中⽂件的内容不起作⽤

1
[student@workstation develop-git (main %)]$ git reset lixiaohui.txt

需要注意的是,还有一个git rm命令,这个rm命令是删除工作目录中的文件,并把删除操作做暂存

1
2
3
4
5
6
7
8
9
10
11
12
[student@workstation develop-git (main %)]$ git rm lixiaohui.txt
rm 'lixiaohui.txt'
[student@workstation develop-git (main +%)]$ ls
apache-setup.yml lxh-2.txt templates
[student@workstation develop-git (main +%)]$ git status
On branch main
Your branch is ahead of 'origin/main' by 1 commit.
(use "git push" to publish your local commits)

Changes to be committed:
(use "git restore --staged <file>..." to unstage)
deleted: lixiaohui.txt

推送到远程仓库

配置默认的推送方式并推送

用户名:student
密码:Student@123

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[student@workstation develop-git (main +%)]$ git config --global push.default simple
[student@workstation develop-git (main +%)]$ git add .
[student@workstation develop-git (main +)]$ git commit -m 'lixiaohui commit ok'
[main 631bb57] lixiaohui commit ok
1 file changed, 0 insertions(+), 0 deletions(-)
rename lixiaohui.txt => lxh-2.txt (100%)
[student@workstation develop-git (main)]$ git push
Username for 'https://git.lab.example.com': student
Password for 'https://student@git.lab.example.com':
Enumerating objects: 6, done.
Counting objects: 100% (6/6), done.
Delta compression using up to 4 threads
Compressing objects: 100% (4/4), done.
Writing objects: 100% (5/5), 497 bytes | 497.00 KiB/s, done.
Total 5 (delta 1), reused 0 (delta 0), pack-reused 0
To https://git.lab.example.com/student/develop-git.git
3f9d470..631bb57 main -> main

不过除了simple这个默认的之外,还有别的,也一并提一嘴

  • simple: 推送当前分支到远程仓库的同名分支(最常用且默认设置)。
  • matching: 推送所有本地与远程同名的分支。
  • current: 只推送当前本地分支到远程的同名分支。
  • upstream: 推送当前分支到设置的上游分支。
  • nothing: 不进行任何推送操作。

Git pull和Git fetch

相同点:

都是用来从远程仓库获取更新的命令

不同点

git fetch 命令会从远程仓库拉取最新的提交,但不会自动合并到你当前的工作分支上,这个命令通常用于查看远程仓库的更新情况,以及在本地分析远程分支的变化,然后决定如何处理,你需要自己执行git merge操作来合并远程和本地

git pull 命令实际上是两个步骤的结合:首先执行 git fetch,然后自动执行 git merge,将远程分支的更新合并到你当前的工作分支上

以上的merge操作,如果有冲突,会提醒你,需要你处理然后才会merge

检查 Git ⽇志

git log 命令显⽰每个提交的提交⽇志消息和关联的 ID 哈希

git show commit-hash 命令显⽰特定提交哈希的更改集中的内容,这个hash只需要能作为唯一识别就行,不用输全

1
[student@workstation ~]$ git log
1
2
3
4
5
6
7
8
9
10
11
commit bffaa9f5ab8bbd57e4c69d4933db495e6c789bd9 (HEAD -> master, origin/master, origin/HEAD)
Author: Xiaohui Li <939959092@qq.com>
Date: Mon Mar 18 17:29:57 2024 +0800

initial upload

commit 73eb07e0deeaba04b8c0929fbe2faf618ab333e4
Author: Xiaohui Li <939959092@qq.com>
Date: Sun Mar 17 16:15:42 2024 +0800

update size on swap
1
[student@workstation ~]$ git show 73eb07e0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
commit 73eb07e0deeaba04b8c0929fbe2faf618ab333e4
Author: Xiaohui Li <xiaohui_li@foxmail.com>
Date: Sun Mar 17 16:15:42 2024 +0800

update size on swap

diff --git a/rhce9/rh200.md b/rhce9/rh200.md
index d10d570..03e0758 100644
--- a/rhce9/rh200.md
+++ b/rhce9/rh200.md
@@ -684,9 +684,9 @@ Partition type
Select (default p): p
Partition number (3,4, default 3): 3
First sector (2095106-8388607, default 2097152):
-Last sector, +sectors or +size{K,M,G,T,P} (2097152-8388607, default 8388607): +756M
+Last sector, +sectors or +size{K,M,G,T,P} (2097152-8388607, default 8388607): +512M

-Created a new partition 3 of type 'Linux' and of size 756 MiB.
+Created a new partition 3 of type 'Linux' and of size 512 MiB.

Command (m for help): t
Partition number (1-3, default 3): 3

创建Git 库

git init 用于在当前目录下创建一个新的 Git 仓库,Git 会在该目录下创建一个 .git 目录,该目录包含了 Git 仓库的所有信息,包括版本历史、配置和对象数据库等

git init --bare 用于创建一个裸仓库,也就是没有工作目录的仓库,裸仓库是不包含工作目录的 Git 仓库,只包含 Git 版本历史和对象数据库,通常用作远程仓库(例如在服务器上托管的仓库)

总的来说,git init 用于创建普通的 Git 仓库,而 git init --bare 用于创建裸仓库,通常用作远程仓库

使⽤ Git 分⽀和引⽤

当我们的1.0向线上发布时,我们就需要创建1.1.1的分支进行开发

HEAD 引⽤是本地⼯作树中的当前提交,使⽤ git branch 命令,从当前的 HEAD 提交创建⼀个新的分⽀。 此命令会为新分⽀创建⼀个引⽤,但它不会将当前 HEAD 设置为此分⽀。 使⽤ git checkout 命令将 HEAD 移到相应的分⽀

创建新分支

如果本地还没有任何提交,是不能创建分支的,默认的分支名称为master或者main

使⽤ git branch 命令,从当前的 HEAD 提交创建⼀个新的分⽀。 此命令会为新分⽀创建⼀个引⽤,但它不会将当前 HEAD 设置为此分⽀。 使⽤ git checkout 命令将 HEAD 移到相应的分⽀。

创建一个提交,并查看当前分支名称

git add 后面的.代表当前位置的所有未跟踪文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[student@workstation ~ (master #%)]$ git clone https://git.lab.example.com/student/develop-git.git
Cloning into 'develop-git'...
remote: Enumerating objects: 11, done.
remote: Counting objects: 100% (11/11), done.
remote: Compressing objects: 100% (10/10), done.
remote: Total 11 (delta 1), reused 0 (delta 0), pack-reused 0
Receiving objects: 100% (11/11), done.
Resolving deltas: 100% (1/1), done.
[student@workstation ~ (master #%)]$ cd develop-git/
[student@workstation develop-git (main)]$ echo lixiaohui content > lixiaohui.txt
[student@workstation develop-git (main %)]$ git add .
[student@workstation develop-git (main +)]$ git commit -m 'test commit'
[main 34f6e31] test commit
1 file changed, 1 insertion(+)
create mode 100644 lixiaohui.txt

[student@workstation develop-git (main)]$ git branch
* main

看到我们当前在main分支上,来创建一个lxh-branch

1
2
3
4
[student@workstation develop-git (main)]$ git branch lxh-branch
[student@workstation develop-git (main)]$ git branch
lxh-branch
* main

切换分支

切换到lxh-branch分支

通过使⽤ -b 选项运⾏ git checkout 命令,可以在⼀个步骤中创建⼀个分⽀并切换到该分⽀

1
2
3
4
5
[student@workstation develop-git (main)]$ git checkout lxh-branch
Switched to branch 'lxh-branch'
[student@workstation develop-git (lxh-branch)]$ git branch
* lxh-branch
main

合并分支

完成了分⽀上的⼯作后,可以将该分⽀与原始分⽀合并。 这允许我们并⾏操作新功能和漏洞修复,⽽主分⽀则没有未完成或未经测试的⼯作。

确认主分支的内容

1
2
3
4
5
6
7
[student@workstation develop-git (lxh-branch)]$ git checkout main
Switched to branch 'main'
[student@workstation develop-git (main)]$ echo main content > lixiaohui.txt
[student@workstation develop-git (main *)]$ git add .
[student@workstation develop-git (main +)]$ git commit -m 'main commit'
[main c09ee54] main commit
1 file changed, 1 insertion(+), 1 deletion(-)

确认lxh-master分支内容

1
2
3
4
5
6
7
[student@workstation develop-git (main)]$ git checkout lxh-branch
Switched to branch 'lxh-branch'
[student@workstation develop-git (lxh-branch)]$ echo lxh-branch content > lixiaohui.txt
[student@workstation develop-git (lxh-branch *)]$ git add .
[student@workstation develop-git (lxh-branch +)]$ git commit -m 'lxh branch commit'
[lxh-branch 6f98fc4] lxh branch commit
1 file changed, 1 insertion(+), 1 deletion(-)

将lxh-branch分支合并到master主线

git merge可以合并,但是如果遇到冲突,就需要人工干预,具体如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[student@workstation develop-git (lxh-branch)]$ git merge lxh-branch
Already up to date.
[student@workstation develop-git (lxh-branch)]$ git merge main
Auto-merging lixiaohui.txt
CONFLICT (content): Merge conflict in lixiaohui.txt
Automatic merge failed; fix conflicts and then commit the result.

[student@workstation develop-git (lxh-branch *+|MERGING)]$ cat lixiaohui.txt
<<<<<<< HEAD
lxh-branch content
=======
main content
>>>>>>> main

手工编辑文件,把哪里需要保留,哪里需要删除处理好,并把结果commit

1
2
3
4
5
6
7
[student@workstation develop-git (lxh-branch *+|MERGING)]$ vim lixiaohui.txt
[student@workstation develop-git (lxh-branch *+|MERGING)]$ cat lixiaohui.txt
lxh-branch content
main content
[student@workstation develop-git (lxh-branch *+|MERGING)]$ git add lixiaohui.txt
[student@workstation develop-git (lxh-branch +|MERGING)]$ git commit -m 'laoli merge ok'
[lxh-branch 4ad2cdd] laoli merge ok

从之前的提交创建分支

使⽤ git checkout 命令将 HEAD 移到任何提交,然后可以使⽤ git branch命令从此处创建分支

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[student@workstation develop-git (lxh-branch)]$ git log
commit 4ad2cddddd22ce138df6ba434de89c67d0b43d95 (HEAD -> lxh-branch)
Merge: 6f98fc4 c09ee54
Author: Xiaohui Li <939958092@qq.ocm>
Date: Mon Mar 10 05:29:33 2025 +0000

laoli merge ok

commit 6f98fc40530afb3098a70a11f38f499cd61c7dd7
Author: Xiaohui Li <939958092@qq.ocm>
Date: Mon Mar 10 05:27:24 2025 +0000

lxh branch commit

commit c09ee54f30e382613fd31f887ee10b8fc6c61cd1 (main)
Author: Xiaohui Li <939958092@qq.ocm>
Date: Mon Mar 10 05:26:36 2025 +0000

main commit

commit 34f6e31b4242d31eca7fea190fbc5ba70b842d73
Author: Xiaohui Li <939958092@qq.ocm>
Date: Mon Mar 10 05:23:53 2025 +0000

test commit

commit 631bb57dafd8d2b764f7d55ffc735a50e1f1672a (origin/main, origin/HEAD)
Author: Xiaohui Li <939958092@qq.ocm>
Date: Mon Mar 10 05:18:48 2025 +0000

lixiaohui commit ok

commit 9196c6612ccbc793440c54fa8d707dc1482e03a8
Author: Xiaohui Li <939958092@qq.ocm>
Date: Mon Mar 10 05:12:47 2025 +0000

lxh commit

commit 3f9d4707b79bc1fb63d5cb480c6637988c49e78e
Author: ['Student User'] <['student@lab.example.com']>
Date: Mon Mar 10 05:00:39 2025 +0000

Initial commit

lixiaohui commit ok处创建名为version-1分支,在创建分支之前,我们可以看到git处于分离头指针状态,并没有处于任何branch

分离头指针(Detached HEAD) 是 Git 中的一个概念,表示在 Git 中的 HEAD 指针不再指向某个具体的分支,而是指向一个特定的提交。

通常,HEAD 指向当前所在的分支(例如,mastermain)。但是,当你在 Git 中进行checkout到过去提交操作时,HEAD 可能会“分离”,即它不再指向任何一个分支,而是直接指向一个特定的提交。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[student@workstation develop-git (lxh-branch)]$ git checkout 631bb57dafd8d
Note: switching to '631bb57dafd8d'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:

git switch -c <new-branch-name>

Or undo this operation with:

git switch -

Turn off this advice by setting config variable advice.detachedHead to false

HEAD is now at 631bb57 lixiaohui commit ok
[student@workstation develop-git ((631bb57...))]$

checkout -b创建并进入新分支,当然也可以先创建,再checkout

1
2
3
4
5
6
[student@workstation develop-git ((631bb57...))]$ git checkout -b version-1
Switched to a new branch 'version-1'
[student@workstation develop-git (version-1)]$ git branch
lxh-branch
main
* version-1

将分⽀推送到远程存储库

在执行git commit之后,只是提交到了本地仓库,需要git push来提交到远程服务器

如果你的分支只在本地可用,需要先和远程仓库做一下关联

将本地的 version-1 分支推送到远程仓库(origin)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[student@workstation develop-git (version-1)]$ git remote -v
origin https://git.lab.example.com/student/develop-git.git (fetch)
origin https://git.lab.example.com/student/develop-git.git (push)
[student@workstation develop-git (version-1)]$
[student@workstation develop-git (version-1)]$ git remote add version-1 https://git.lab.example.com/student/develop-git.git
[student@workstation develop-git (version-1)]$ git remote -v
origin https://git.lab.example.com/student/develop-git.git (fetch)
origin https://git.lab.example.com/student/develop-git.git (push)
version-1 https://git.lab.example.com/student/develop-git.git (fetch)
version-1 https://git.lab.example.com/student/develop-git.git (push)


[student@workstation develop-git (version-1)]$ git push --set-upstream origin version-1
Username for 'https://git.lab.example.com': student
Password for 'https://student@git.lab.example.com':
Total 0 (delta 0), reused 0 (delta 0), pack-reused 0
remote:
remote: To create a merge request for version-1, visit:
remote: https://git.lab.example.com/student/develop-git/-/merge_requests/new?merge_request%5Bsource_branch%5D=version-1
remote:
To https://git.lab.example.com/student/develop-git.git
* [new branch] version-1 -> version-1
Branch 'version-1' set up to track remote branch 'version-1' from 'origin'.

git push --set-upstream origin version-1 这个命令用于将本地分支 version-1 推送到远程仓库,并将本地分支与远程分支关联起来,使得以后在本地 version-1 分支上执行 git pushgit pull 时,Git 会自动知道操作的是远程仓库的 version-1 分支。

在 Git 中构建 Ansible 项⽬

每个 Ansible 项⽬都应拥有⾃⼰的 Git 存储库,每个项目的文件结构应该遵守以下布局:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
production                # inventory file for production servers
staging # inventory file for staging environment

group_vars/
group1.yml # here we assign variables to particular groups
group2.yml
host_vars/
hostname1.yml # here we assign variables to particular systems
hostname2.yml

library/ # if any custom modules, put them here (optional)
module_utils/ # if any custom module_utils to support modules, put them here (optional)
filter_plugins/ # if any custom filter plugins, put them here (optional)

site.yml # main playbook
webservers.yml # playbook for webserver tier
dbservers.yml # playbook for dbserver tier
tasks/ # task files included from playbooks
webservers-extra.yml # <-- avoids confusing playbook with task files

⻆⾊和 Ansible 内容集合

Ansible 内容集合 通常存放在 collections 目录的子目录中。

角色 则存放在 roles 目录的子目录中。

这两个目录中的一个或两个可能包含 requirements.yml 文件。自动化控制器会根据 Ansible 项目中存在的 roles/requirements.ymlcollections/requirements.yml 文件,自动更新项目中的角色和集合。

配置 Git 以忽略⽂件

在 Ansible 项目的顶级目录中,你可以添加一个 .gitignore 文件。文件中的每一行代表一个匹配模式,用于决定 Git 是否应该忽略某个文件。通常,文件名匹配的行表示 Git 会忽略相应的文件。而以感叹号(!)开头的行表示即使该文件匹配其他模式,Git 也不应该忽略它。

以下是一个 .gitignore 文件的示例:

1
2
3
4
5
6
roles/**
!roles/requirements.yml
collections/ansible_collections
ansible-navigator.log
*-artifact-*
.ssh
  • roles/**:这一行告诉 Git 忽略 roles 目录中的所有文件和子目录。

  • !roles/requirements.yml:这一行取消了前一行对 roles/requirements.yml 文件的忽略,意味着即使 roles 目录被忽略,这个特定文件仍将被 Git 追踪。

  • collections/ansible_collections:这一行告诉 Git 忽略 collections/ansible_collections 目录。

  • ansible-navigator.log:这一行告诉 Git 忽略任何名为 ansible-navigator.log 的文件。

  • -artifact-:这一行告诉 Git 忽略所有文件名中包含 -artifact- 字符串的文件(例如:playbook-artifact-2023.json)。

  • .ssh:这一行告诉 Git 忽略整个 .ssh 目录,通常该目录中包含私钥和其他敏感信息。