- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章git修改和删除功能_动力节点Java学院整理由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
为什么Git比其他版本控制系统设计得优秀,因为Git跟踪并管理的是修改,而非文件.
你会问,什么是修改?比如你新增了一行,这就是一个修改,删除了一行,也是一个修改,更改了某些字符,也是一个修改,删了一些又加了一些,也是一个修改,甚至创建一个新文件,也算一个修改.
为什么说Git管理的是修改,而不是文件呢?我们还是做实验。第一步,对readme.txt做一个修改,比如加一行内容:
1
2
3
4
5
|
$
cat
readme.txt
Git is a distributed version control system.
Git is
free
software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes.
|
然后,添加:
1
2
3
4
5
6
7
8
|
$ git add readme.txt
$ git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: readme.txt
#
|
然后,再修改readme.txt:
1
2
3
4
5
|
$
cat
readme.txt
Git is a distributed version control system.
Git is
free
software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
|
提交:
1
2
3
|
$ git commit -m
"git tracks changes"
[master d4f25b6] git tracks changes
1
file
changed, 1 insertion(+)
|
提交后,再看看状态:
1
2
3
4
5
6
7
8
9
|
$ git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: readme.txt
#
no changes added to commit (use
"git add"
and
/or
"git commit -a"
)
|
咦,怎么第二次的修改没有被提交?
别激动,我们回顾一下操作过程:
第一次修改 -> git add -> 第二次修改 -> git commit 。
你看,我们前面讲了,Git管理的是修改,当你用git add命令后,在工作区的第一次修改被放入暂存区,准备提交,但是,在工作区的第二次修改并没有放入暂存区,所以,git commit只负责把暂存区的修改提交了,也就是第一次的修改被提交了,第二次的修改不会被提交.
提交后,用git diff HEAD -- readme.txt命令可以查看工作区和版本库里面最新版本的区别:
1
2
3
4
5
6
7
8
9
10
11
|
$ git
diff
HEAD -- readme.txt
diff
--git a
/readme
.txt b
/readme
.txt
index 76d770f..a9c5755 100644
--- a
/readme
.txt
+++ b
/readme
.txt
@@ -1,4 +1,4 @@
Git is a distributed version control system.
Git is
free
software distributed under the GPL.
Git has a mutable index called stage.
-Git tracks changes.
+Git tracks changes of files.
|
可见,第二次修改确实没有被提交.
那怎么提交第二次修改呢?你可以继续git add再git commit,也可以别着急提交第一次修改,先git add第二次修改,再git commit,就相当于把两次修改合并后一块提交了:
第一次修改 -> git add -> 第二次修改 -> git add -> git commit 。
好,现在,把第二次修改提交了,然后开始小结.
自然,你是不会犯错的。不过现在是凌晨两点,你正在赶一份工作报告,你在readme.txt中添加了一行:
1
2
3
4
5
6
|
$
cat
readme.txt
Git is a distributed version control system.
Git is
free
software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
My stupid boss still prefers SVN.
|
在你准备提交前,一杯咖啡起了作用,你猛然发现了“stupid boss”可能会让你丢掉这个月的奖金! 。
既然错误发现得很及时,就可以很容易地纠正它。你可以删掉最后一行,手动把文件恢复到上一个版本的状态。如果用git status查看一下:
1
2
3
4
5
6
7
8
9
|
$ git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: readme.txt
#
no changes added to commit (use
"git add"
and
/or
"git commit -a"
)
|
你可以发现,Git会告诉你,git checkout -- file可以丢弃工作区的修改:
1
|
$ git checkout -- readme.txt
|
命令git checkout -- readme.txt意思就是,把readme.txt文件在工作区的修改全部撤销,这里有两种情况:
一种是readme.txt自修改后还没有被放到暂存区,现在,撤销修改就回到和版本库一模一样的状态; 。
一种是readme.txt已经添加到暂存区后,又作了修改,现在,撤销修改就回到添加到暂存区后的状态.
总之,就是让这个文件回到最近一次git commit或git add时的状态.
现在,看看readme.txt的文件内容:
1
2
3
4
5
|
$
cat
readme.txt
Git is a distributed version control system.
Git is
free
software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
|
文件内容果然复原了.
git checkout -- file命令中的--很重要,没有--,就变成了“切换到另一个分支”的命令,我们在后面的分支管理中会再次遇到git checkout命令.
现在假定是凌晨3点,你不但写了一些胡话,还git add到暂存区了:
1
2
3
4
5
6
7
|
$
cat
readme.txt
Git is a distributed version control system.
Git is
free
software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
My stupid boss still prefers SVN.
$ git add readme.txt
|
庆幸的是,在commit之前,你发现了这个问题。用git status查看一下,修改只是添加到了暂存区,还没有提交:
1
2
3
4
5
6
7
|
$ git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: readme.txt
#
|
Git同样告诉我们,用命令git reset HEAD file可以把暂存区的修改撤销掉(unstage),重新放回工作区:
1
2
3
|
$ git reset HEAD readme.txt
Unstaged changes after reset:
M readme.txt
|
git reset命令既可以回退版本,也可以把暂存区的修改回退到工作区。当我们用HEAD时,表示最新的版本.
再用git status查看一下,现在暂存区是干净的,工作区有修改:
1
2
3
4
5
6
7
8
9
|
$ git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: readme.txt
#
no changes added to commit (use
"git add"
and
/or
"git commit -a"
)
|
还记得如何丢弃工作区的修改吗?
1
2
3
4
|
$ git checkout -- readme.txt
$ git status
# On branch master
nothing to commit (working directory clean)
|
整个世界终于清静了! 。
现在,假设你不但改错了东西,还从暂存区提交到了版本库,怎么办呢?git可以回退到上一个版本。不过,这是有条件的,就是你还没有把自己的本地版本库推送到远程。一旦你把“stupid boss”提交推送到远程版本库,你就真的惨了 在Git中,删除也是一个修改操作,我们实战一下,先添加一个新文件test.txt到Git并且提交:
1
2
3
4
5
|
$ git add
test
.txt
$ git commit -m
"add test.txt"
[master 94cdc44] add
test
.txt
1
file
changed, 1 insertion(+)
create mode 100644
test
.txt
|
一般情况下,你通常直接在文件管理器中把没用的文件删了,或者用rm命令删了:
1
|
$
rm
test
.txt
|
这个时候,Git知道你删除了文件,因此,工作区和版本库就不一致了,git status命令会立刻告诉你哪些文件被删除了:
1
2
3
4
5
6
7
8
9
|
$ git status
# On branch master
# Changes not staged for commit:
# (use "git add/rm <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# deleted: test.txt
#
no changes added to commit (use
"git add"
and
/or
"git commit -a"
)
|
现在你有两个选择,一是确实要从版本库中删除该文件,那就用命令git rm删掉,并且git commit:
1
2
3
4
5
6
|
$ git
rm
test
.txt
rm
'test.txt'
$ git commit -m
"remove test.txt"
[master d17efd8] remove
test
.txt
1
file
changed, 1 deletion(-)
delete mode 100644
test
.txt
|
现在,文件就从版本库中被删除了.
另一种情况是删错了,因为版本库里还有呢,所以可以很轻松地把误删的文件恢复到最新版本:
1
|
$ git checkout --
test
.txt
|
git checkout其实是用版本库里的版本替换工作区的版本,无论工作区是修改还是删除,都可以“一键还原”.
最后此篇关于git修改和删除功能_动力节点Java学院整理的文章就讲到这里了,如果你想了解更多关于git修改和删除功能_动力节点Java学院整理的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
过去几天我一直试图解决这个问题,但我做不到。我正在尝试生成 _ _ _ 形式的随机数。 _ _ _ _ 小数点前 3 位,然后是 4 位小数。 非常感谢任何帮助。谢谢, 院长 最佳答案 您发布的代码有
我的方法有问题。我需要从主类调用的方法的输出打印我: 需要这个输出:_ _ _ _ _ 我知道我可以将 System 的静态方法放入循环中,但这不是我想要的解决方案。我需要它来打印主类中方法的输出。
我正在学习 Scala,有一个非常基本的问题。考虑以下两个使用占位符语法的表达式 - // Syntax A val fnA = (_: Int, _: Int) => _ / _ // Synta
我正在使用图书馆 URLEmbeddedView 它在其库中定义了以下代码: func addConstraints(with view: UIView, center: CGPoint, multi
我一直在许多受人尊敬的文档中看到这个相当令人尴尬的事情:_|_ 或 (_|_) 找不到它的定义(Google 不能很好地处理符号)。那到底是什么呢? 最佳答案 来自 here :- Bottom Th
,_,( ){ ,_,| ,_,&};,_, 不知道是什么意思... 看起来像一个 bash 命令,但它可能是 s bash shell 指令或其他东西如果有人可以帮助理解这一点,我们将不胜感激。当我
所以我正在尝试构建一个函数,它接受一个元组列表并找到具有最大第二个元素的元组。但是我遇到了模式匹配错误。 这是我的代码。 resultTuple :: [((Int,Int),Int)] ->
我在 try Flow 编辑器中重现了我的情况,可以访问 here . 以下是链接发生问题时的代码: /* @flow */ type PayloadType = 1 | 2 | 3; type Tr
我在plfa读到这样一段代码。 import Relation.Binary.PropositionalEquality as Eq open Eq using (_≡_; refl; cong; s
这个问题在这里已经有了答案: Swift 3.0: compiler error when calling global func min(T,T) in Array or Dictionary e
是否有理由使用一个而不是另一个?似乎 _.some 和 _.map 更易于使用或适用于更多情况(根据我非常有限的经验),但从阅读它来看,它们听起来好像应该做同样的事情。我敢肯定还有其他这样的例子,我很
在 Xcode 7 Beta 中开始使用 Swift 2 后,出现错误 cannot invoke。是什么导致了这个问题? 我试图通过以下两个问题找出我的问题,但我仍然收到错误:Question 1
所以我玩了一会儿,试图写一些关于存在和变化的东西,我遇到了这段有趣的代码。 final case class Box[+T](val value: T) { def >>=[U](f: T =>
Here is the screenshot for the error. 遵循本教程 https://developers.google.com/places/ios-api/start 在本教程中
我正在为许多标准的 Underscore.js 函数重写底层代码,以提高我的 JavaScript 技能,但我有点受困于 _.every/ _.全部。似乎在库本身中,_.every/_.all 函数仅
我在 shell 脚本中多次看到他们在 if 比较中使用 "_",如下所示: if [ "_$str" = "_" ]; then ....; fi 上面的代码通过比较 if [ "_$str"= "
我正在尝试快速过滤字典: var data: [String: String] = [:] data = data.filter { $0.1 == "Test" } 上面的过滤器代码在 Swift
我在 Entity Framework 核心映射方面遇到了问题。我收到此异常“不支持从‘付款’到‘购买。付款’的关系,因为拥有的实体类型‘购买’不能位于非所有权关系的主要方面。”在调试此功能的测试时。
我正在尝试模拟groovy.sql.Sql调用(查询,params [],闭包)类。 下面是我正在尝试在DatabaseService类文件中的方法。 public void getUsers(Lis
在阅读 dart 代码时,我经常看到一些仅使用下划线 _ 参数调用的函数。这让我困扰了一段时间,由于 flutter 改进了它的分析消息,我有了一些线索......但我觉得我并没有真正理解这个概念:-
我是一名优秀的程序员,十分优秀!