git rebase -i 详解

git rebase 命令简介

git rebase命令允许我们轻松地更改一系列提交,修改存储库的历史记录。我们可以重新排序、编辑或合并提交。一般常用git rebase来合并当前分支的多个commit记录(压缩)以及避免出现分支的交叉合并(变基)1

git rebase 可用的命令

命令缩写解释
pickp保留使用该commit。重新安排pick命令的顺序会改变提交的顺序。如果选择不包含提交,则应该删除整行。
rewordr使用该commit但需要编辑。类似于pick,但是在使用它之后,rebase进程将暂停,并给您一个修改提交消息的机会。提交所做的任何更改都不受影响。
edite使用该commit但需要停下来修改该提交。如果选择编辑提交,将有机会修改提交,这意味着可以完全添加或更改提交。还可以在继续修改之前进行更多的提交。这允许将大的提交拆分为较小的提交,或者删除提交中所做的错误更改。
squashs将该commit合并到前一个commit。该命令允许将两个或多个提交合并为单个提交。一个提交被压缩到它上面的提交中。Git给用户机会编写描述这两个更改的新提交消息。
fixupf将该commit合并到前一个commit,不需要保留该commit的注释。这与squash类似,但是要合并的提交会丢弃其消息。提交简单地合并到它上面的提交中,并且早先的提交的消息用于描述这两个更改。
execx使用shell执行命令
dropd删除提交

git rebase 各个命令实操

实操前的准备

# 我们初始化一个项目
git init## 制造一些提交
touch base.txt
git add .
git commit -m "add base"touch 1.txt
git add .
git commit -m "add 1"touch 2.txt
git add .
git commit -m "add 2"touch 3.txt
git add .
git commit -m "add 3"touch 4.txt
git add .
git commit -m "add 4"touch 5.txt
git add .
git commit -m "add 5"## 查看现在的提交
git log
commit 24b96811274886be653492b3afb9434f0a6a8c4f (HEAD -> master)
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:36:13 2023 +0800add 5commit 8117d20aa00dae8d4e71f835bba716e7cf8aec83
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:42 2023 +0800add 4commit 4e8153308b8d71e89eddb6759881c4dd8838d2d9
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:09 2023 +0800add 3commit ba2d4a8dd4976e63903f8e7777dbead108c5dbcb
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:34:50 2023 +0800add 2commit 7d28548e7418f98f385edba1ef667cf7508d1e82
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:34:25 2023 +0800add 1commit 9d6189ffbbf3da34e33d24b5058a155f3d1f5bda
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:33:51 2023 +0800add base

pick命令演示-更改提交顺序,删除提交

pick保留使用该commit。重新安排pick命令的顺序会改变提交的顺序。如果选择不包含提交,则应该删除整行。

假设我们现在要改变已提交的5.txt和4.txt的顺序,该如何操作?

第一步:告诉git我要操作最近的2次提交

git rebase -i HEAD~2

接着,git交互式窗口弹出等待进一步操作,如下是上面命令执行后的弹框

pick 8117d20 add 4
pick 24b9681 add 5# Rebase 4e81533..24b9681 onto 4e81533 (2 commands)
#
# Commands:
# p, pick <commit> = use commit
# r, reword <commit> = use commit, but edit the commit message
# e, edit <commit> = use commit, but stop for amending
# s, squash <commit> = use commit, but meld into previous commit
# f, fixup <commit> = like "squash", but discard this commit's log message
# x, exec <command> = run command (the rest of the line) using shell
# b, break = stop here (continue rebase later with 'git rebase --continue')
# d, drop <commit> = remove commit
# l, label <label> = label current HEAD with a name
# t, reset <label> = reset HEAD to a label
# m, merge [-C <commit> | -c <commit>] <label> [# <oneline>]
# .       create a merge commit using the original merge commit's
# .       message (or the oneline, if no original merge commit was
# .       specified). Use -c <commit> to reword the commit message.
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#

第二步:把第一行和第二行交换顺序,即如下顺序,然后在vim编辑器中保存

pick 24b9681 add 5
pick 8117d20 add 4

然后使用git log查看内容如下,成功

$ git log
commit 360558534b8b79dafdd77131485b252a0ad3bdd6 (HEAD -> master)
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:42 2023 +0800add 4commit 40fecbc61d8d318d23b856e5e075600667dc9fdc
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:36:13 2023 +0800add 5commit 4e8153308b8d71e89eddb6759881c4dd8838d2d9
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:09 2023 +0800add 3

假设我们紧接着要删除add 5这次提交,该如何做?

我们只需要在弹出的交互式窗口中删除如下这一行,保存退出即可

pick 24b9681 add 5

使用git log查看结果如下,add 5的提交被删除,成功

$ git log
commit 958d1bc05005f0141815e76f498406f443912e8d (HEAD -> master)
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:42 2023 +0800add 4commit 4e8153308b8d71e89eddb6759881c4dd8838d2d9
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:09 2023 +0800add 3commit ba2d4a8dd4976e63903f8e7777dbead108c5dbcb
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:34:50 2023 +0800add 2commit 7d28548e7418f98f385edba1ef667cf7508d1e82
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:34:25 2023 +0800add 1commit 9d6189ffbbf3da34e33d24b5058a155f3d1f5bda
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:33:51 2023 +0800add base

record使用该commit并编辑(提交内容不变)

record类似于pick,但是在使用它之后,rebase进程将暂停,并给您一个修改提交消息的机会。提交所做的任何更改都不受影响

假设我们要修改add 2的提交comment信息,该怎么操作?

使用git log查看add 2的提交属于最近提交的倒数第3次,则我们要使用下面的命令

git rebase -i HEAD~3

弹出如下信息:

pick ba2d4a8 add 2
pick 4e81533 add 3
pick 958d1bc add 4# Rebase 7d28548..958d1bc onto 7d28548 (3 commands)
#

我们只需要修改第一行的add 2如下:(r ba2d4a8 add 2或record ba2d4a8 add 2都可以),然后保存退出

r ba2d4a8 add 2
pick 4e81533 add 3
pick 958d1bc add 4# Rebase 7d28548..958d1bc onto 7d28548 (3 commands)
#

紧接着弹出如下交互界面

add 2# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# Date:      Fri Oct 20 14:34:50 2023 +0800
#
# interactive rebase in progress; onto 7d28548
# Last command done (1 command done):
#    reword ba2d4a8 add 2
# Next commands to do (2 remaining commands):
#    pick 4e81533 add 3
#    pick 958d1bc add 4
# You are currently editing a commit while rebasing branch 'master' on '7d28548'.
#
# Changes to be committed:
#       new file:   2.txt

我们现在就可以修改add 2这个提交信息了,我们将第一行add 2修改如下

add 2 - new commit

保存退出后,使用git log查看发现add 2的提交信息成功修改了

commit bec01eba90140cd0158465dbec1b49aed2a183ff (HEAD -> master)
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:42 2023 +0800add 4commit 9a19efcb04106fbb029f84d7e5e36f8fabe5a763
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:09 2023 +0800add 3commit 7c628dbc275b749e8a6d20cff13f33d55325dc07
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:34:50 2023 +0800add 2 - new commitcommit 7d28548e7418f98f385edba1ef667cf7508d1e82
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:34:25 2023 +0800add 1commit 9d6189ffbbf3da34e33d24b5058a155f3d1f5bda
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:33:51 2023 +0800add base

edit修改提交

如果选择编辑提交,将有机会修改提交,这意味着可以完全添加或更改提交。还可以在继续修改之前进行更多的提交。这允许将大的提交拆分为较小的提交,或者删除提交中所做的错误更改

假设我们要在add 3和add 4两次提交之间再加提交,该如何操作?

我们先输入如下命令

git rebase -i HEAD~2

弹出如下信息

pick 9a19efc add 3
pick bec01eb add 4# Rebase 7c628db..bec01eb onto 7c628db (2 commands)

修改如下

e 9a19efc add 3
pick bec01eb add 4# Rebase 7c628db..bec01eb onto 7c628db (2 commands)

保存退出后,git反馈如下信息

$ git rebase -i HEAD~2
Stopped at 9a19efc...  add 3
You can amend the commit now, withgit commit --amendOnce you are satisfied with your changes, rungit rebase --continueJiuWuyou@ABC MINGW64 /d/Code/gitopr (master|REBASE 1/2)

可以看到我们的master分支多了REBASE 1/2,我们尝试做一些修改,给3.txt文本中增加一些内容,然后提交

JiuWuyou@ABC MINGW64 /d/Code/gitopr (master|REBASE 1/2)
$ git add 3.txtJiuWuyou@ABC MINGW64 /d/Code/gitopr (master|REBASE 1/2)
$ git commit -m"edit 3.txt"
[detached HEAD cfb4f5b] edit 3.txt1 file changed, 1 insertion(+)

紧接着我们继续rebase

JiuWuyou@ABC MINGW64 /d/Code/gitopr (master|REBASE 1/2)
$ git rebase --continue
Successfully rebased and updated refs/heads/master.JiuWuyou@ABC MINGW64 /d/Code/gitopr (master)

根据上述信息,rebase成功,然后我们使用git log查看,结果如下,成功在add 3和add 4之间提交了一次新的提交

$ git log
commit c0b72762408e0d28a914dcae98ef5c41ff6ff662 (HEAD -> master)
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:42 2023 +0800add 4commit cfb4f5b8ab1fb6794c0e219366bd9b4eb625d91f
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 15:06:27 2023 +0800edit 3.txtcommit 9a19efcb04106fbb029f84d7e5e36f8fabe5a763
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:09 2023 +0800add 3

假设我们要单独的修改edit 3.txt这次提交内容和消息,该如何操作?

我们先使用git rebase -i HEAD~2(因为edit 3.txt是倒数第2次提交),然后将edit 3.txt前的pick改为e保存退出后,继续执行下面步骤

修改3.txt文本内容,然后执行git add 3.txt后执行git commit --amend去修改信息,然后使用git rebase --continue即可

JiuWuyou@ABC MINGW64 /d/Code/gitopr (master|REBASE 1/2)
$ git add 3.txtJiuWuyou@ABC MINGW64 /d/Code/gitopr (master|REBASE 1/2)
$ git commit --amend
[detached HEAD c1afb8d] edit 3.txtDate: Fri Oct 20 15:06:27 2023 +08001 file changed, 2 insertions(+)JiuWuyou@ABC MINGW64 /d/Code/gitopr (master|REBASE 1/2)
$ git rebase --continue
Successfully rebased and updated refs/heads/master.JiuWuyou@ABC MINGW64 /d/Code/gitopr (master)
$ git log
commit 4bdef431d96b06ccf128cc71647f77bfffc7bc9e (HEAD -> master)
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:42 2023 +0800add 4commit c1afb8db039a9ca3f19862561fb282682ff51095
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 15:06:27 2023 +0800edit 3.txt

squash合并提交

该命令允许将两个或多个提交合并为单个提交。一个提交被压缩到它上面的提交中。Git给用户机会编写描述这两个更改的新提交消息。

$ git log
commit 4bdef431d96b06ccf128cc71647f77bfffc7bc9e (HEAD -> master)
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:42 2023 +0800add 4commit c1afb8db039a9ca3f19862561fb282682ff51095
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 15:06:27 2023 +0800edit 3.txtcommit 9a19efcb04106fbb029f84d7e5e36f8fabe5a763
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:09 2023 +0800add 3

假设我们要将add 4和edit 3.txt这两次提交合并,我们该怎么操作?

git rebase -i HEAD~2

再弹出的交互窗口中将add 4前的pick修改为s,如下

pick c1afb8d edit 3.txt
s 4bdef43 add 4

保存退出后,git弹出窗口允许我们修改提交信息,默认是两个提交消息合并,我们可以啥都不改,保存退出

# This is a combination of 2 commits.
# This is the 1st commit message:edit 3.txt# This is the commit message #2:add 4# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# Date:      Fri Oct 20 15:06:27 2023 +0800
#
# interactive rebase in progress; onto 9a19efc
# Last commands done (2 commands done):
#    pick c1afb8d edit 3.txt
#    squash 4bdef43 add 4
# No commands remaining.
# You are currently rebasing branch 'master' on '9a19efc'.
#
# Changes to be committed:
#       modified:   3.txt
#       new file:   4.txt

使用git log查询如下,合并成功

$ git log
commit 60b3ebdd3cb11fbcba3aaa33911c13881532dce1 (HEAD -> master)
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 15:06:27 2023 +0800edit 3.txtadd 4commit 9a19efcb04106fbb029f84d7e5e36f8fabe5a763
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:09 2023 +0800add 3

fixup将该commit合并到前一个commit,不需要保留该commit的注释

与squash类似,但是要合并的提交会丢弃其消息。提交简单地合并到它上面的提交中,并且早先的提交的消息用于描述这两个更改。

假设我们要将edit 3.txt的提交内容与add 3合并,并丢弃edit 3.txt的提交信息,该如何操作?

git rebase -i HEAD~2

弹出如下信息

pick 9a19efc add 3
pick 60b3ebd edit 3.txt# Rebase 7c628db..60b3ebd onto 7c628db (2 commands)

更改为

pick 9a19efc add 3
f 60b3ebd edit 3.txt# Rebase 7c628db..60b3ebd onto 7c628db (2 commands)

保存退出后,使用git log查看发现edit 3.txt的提交信息消失,但edit 3.txt文本中的提交内容仍然保留着

$ git log
commit e43925beedb4520924d9996e3356040087531c3a (HEAD -> master)
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:35:09 2023 +0800add 3commit 7c628dbc275b749e8a6d20cff13f33d55325dc07
Author: JiuWuyou <JiuWuyou@Abc.com>
Date:   Fri Oct 20 14:34:50 2023 +0800add 2 - new commit

exec 执行shell命令

git rebase -i HEAD~3
pick 7d28548 add 1
pick 7c628db add 2 - new commit
pick e43925b add 3# Rebase 9d6189f..e43925b onto 9d6189f (3 commands)

我们在上面的弹框内容前加一行shell命令

x echo "execute print command....."
pick 7d28548 add 1
pick 7c628db add 2 - new commit
pick e43925b add 3# Rebase 9d6189f..e43925b onto 9d6189f (3 commands)

保存退出,shell会打印“execute print command…”内容

$ git rebase -i HEAD~3
Executing: echo "execute print command....."
execute print command.....
Successfully rebased and updated refs/heads/master.

drop

删除提交,删除不想要的提交

参考文献

[1] git 重写历史 https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History

git的操作要多多练习,练习中不要怕出错

  1. 参考git rebase的压缩与变基 https://blog.csdn.net/qgccdd061313/article/details/128675617 ↩︎

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/117236.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ChatGPT课件汇总介绍

第二节:有效管理 Token,充分发挥 ChatGPT 的能力 OpenAI 官方计算token的测试地址:https://platform.openai.com/tokenizer 第三节:探索ChatGPT在不同领域的创新应用 1、小说撰写 1、我希望你能作为一个小说家。我会给你一个主题,请写出有创意的、吸引人的故事,能够长时…

MongoDB 学习笔记(基础)

概论 出现背景&#xff1a;MongoDB 是文档型数据库&#xff0c;由于传统的关系型数据库&#xff08;如 MySQL&#xff09;&#xff0c;在数据操作的“三高”需求以及应对 web 的网站需求面前显得有些吃力&#xff0c;在此环境下 MongoDB 出世了 三高需求&#xff1a; (1) 对数…

进程的优先级与LAMP项目部署实战

一、进程的优先级&#xff08;扩展&#xff09; 1、什么是进程的优先级 Linux是一个多用户、多任务的操作系统&#xff0c;系统中通常运行着非常多的进程。哪些进程先运行&#xff0c;哪些进程后运行&#xff0c;就由进程优先级来控制 思考&#xff1a;什么时候需要用到进程…

力扣-python-两数相加

题解 1: # Definition for singly-linked list. # class ListNode(object): # def __init__(self, val0, nextNone): # self.val val # self.next nextclass Solution(object):def addTwoNumbers(self, l1, l2):""":type l1: ListNode:t…

【MATLAB源码-第56期】基于WOA白鲸优化算法和PSO粒子群优化算法的三维路径规划对比。

操作环境&#xff1a; MATLAB 2022a 1、算法描述 1.粒子群算法&#xff08;Particle Swarm Optimization&#xff0c;简称PSO&#xff09;是一种模拟鸟群觅食行为的启发式优化方法。以下是其详细描述&#xff1a; 基本思想&#xff1a; 鸟群在寻找食物时&#xff0c;每只鸟都…

2023-10-17 LeetCode每日一题(倍数求和)

2023-10-17每日一题 一、题目编号 2652. 倍数求和二、题目链接 点击跳转到题目位置 三、题目描述 给你一个正整数 n &#xff0c;请你计算在 [1&#xff0c;n] 范围内能被 3、5、7 整除的所有整数之和。 返回一个整数&#xff0c;用于表示给定范围内所有满足约束条件的数…

华纳云:连接mysql出现2059错误怎么解决

MySQL连接错误2059通常表示MySQL服务器拒绝了连接。这种错误可能由多种原因引起&#xff0c;以下是一些可能的解决方法&#xff1a; 检查MySQL服务器是否正在运行&#xff1a; 确保MySQL服务器正在正常运行。您可以使用以下命令检查MySQL服务器的状态&#xff1a; systemctl st…

Object.prototype.toString.call() 和 instanceOf 和 Array.isArray() 详解

解析: 理解 Object.prototype.toString.call(), instanceof, 和 Array.isArray() 是 JavaScript 中重要的类型检查工具。以下是一个较为详细的解释和示例代码&#xff0c;帮助你理解它们的工作原理和使用场景 Object.prototype.toString.call()&#xff1a; Object.prototyp…

rust - 理解borrow trait

简介 borrow trait 是处理借用(即其它语言中的引用)的 trait,变量的所有权不会转移.泛型定义如下: pub trait Borrow<Borrowed: ?Sized> {/// Immutably borrows from an owned value.fn borrow(&self) -> &Borrowed; }其中包含一个 borrow(&self)的方…

动手学深度学习—含并行连结的网络GoogLeNet(代码详解)

目录 1. Inception块3. GoogLeNet模型3. 训练模型 GoogLeNet吸收了NiN中串联网络的思想&#xff0c;并在此基础上做了改进&#xff0c;并且在2014年的ImageNet图像识别挑战赛中获得了不错的效果。 1. Inception块 GoogLeNet论文解决了多大的卷积核最合适的问题。 Inception块…

PHP 在线考试管理系统mysql数据库web结构layUI布局apache计算机软件工程网页wamp

一、源码特点 PHP 在线考试管理系统是一套完善的web设计系统 layUI技术布局 &#xff0c;对理解php编程开发语言有帮助&#xff0c;系统具有完整的源代码和数据库&#xff0c;系统主要采用B/S模式开发。 PHP 在线考试系统1 代码 https://download.csdn.net/download/qq_41…

【C++面向对象】5. this指针

文章目录 【 1. 基本原理 】【 2. 实例 】 【 1. 基本原理 】 在 C 中&#xff0c;只有成员函数才有 this 指针&#xff08;友元函数没有 this 指针&#xff0c;因为友元不是类的成员&#xff09;&#xff0c;this 指针是所有成员函数的隐含参数。 在成员函数内部&#xff0c;…

线性表操作的实现--顺序表

本文参考朱战力老师的数据结构与算法--使用C语言一书 文章目录 前言 一、线性表是什么&#xff1f; 二、具体实现 1.顺序表的定义 2.初始化ListInitiate&#xff08;L&#xff09; 3.求当前元素个数ListLength&#xff08;L&#xff09; 4.插入元素ListInsert&#xff08;L&…

[卷积神经网络]FasterNet论文解析

一、概述 FasterNet是CVPR2023的文章&#xff0c;通过使用全新的部分卷积PConv&#xff0c;更高效的提取空间信息&#xff0c;同时削减冗余计算和内存访问&#xff0c;效果非常明显。相较于DWConv&#xff0c;PConv的速度更快且精度也非常高&#xff0c;识别精度基本等同于大型…

iOS 配置通用链接(Universal Link)服务端和开发者后台都配置好了,还是跳转不到App

目录 一、什么是 Universal Link&#xff1f; 1.背景介绍 2.特点 3.运行机制原理&流程图 二、配置教程 1.第一步&#xff1a;开启 Associated Domains 服务 1.1 开通 Associated Domains 2.第二步&#xff1a;服务器配置 apple-app-site-association&#xff08;AAS…

【makedown使用介绍】

如何使用makedown 欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必…

pd19虚拟机软件 Parallels Desktop 19 mac中文停用功能

Parallels Desktop 19 mac是一款功能强大的虚拟机软件&#xff0c;它允许用户在Mac电脑上同时运行Windows、Linux和其他操作系统。Parallels Desktop提供了直观易用的界面&#xff0c;使用户可以轻松创建、配置和管理虚拟机。 Parallels Desktop 19 for Mac停用功能 从Paralle…

深圳世有伯乐教育科技有限公司——LJ培训

今天来吐槽一波 深圳世有伯乐教育科技有限公司就是一个垃圾的培训机构&#xff0c;不&#xff0c;说是培训机构都是扭曲事实了&#xff0c;因为它根本就没有国家认可的办学许可证。光说没法让人信服&#xff0c;以下是企查查的截图&#xff1a; 世有伯乐的工商信息图片 续上&…

交换机基础(四):MSTP负载均衡配置案例

如图所示是某个企业内部核心网络的结构图&#xff0c;目前企业中有20个VLAN, 编号为VLAN1&#xff5e;VLAN20, 为了确保内部网络的可靠性&#xff0c;使用 了冗余链路和MSTP 协议。为了能更好地利用网络资源和带宽&#xff0c;现管理员希望通过配置MSTP 的负载均衡实现网络带宽…

TX Text Control.NET For WPF 32.0 Crack

TX Text Control 支持VISUAL STUDIO 2022、.NET 5 和 .NET 6 支持 .NET WPF 应用程序的文档处理 将文档编辑、创建和 PDF 生成添加到您的 WPF 应用程序中。 视窗用户界面 功能齐全的文档编辑器 TX Text Control 是一款完全可编程的丰富编辑控件&#xff0c;它在专为 Visual Stu…