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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| # 在原来文件添加2两行文件 [root@VM-2-11-centos learngit]# cat readme.md Git is a version control system. Git is free software . Git is a distributed version control system Hello word! Hello word! # 添加到暂存区 [root@VM-2-11-centos learngit]# git add readme.md [root@VM-2-11-centos learngit]# git status # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) #
# 不提交 在再做一次修改 [root@VM-2-11-centos learngit]# vim readme.md [root@VM-2-11-centos learngit]# cat readme.md Git is a version control system. Git is free software . Git is a distributed version control system Hello word! Bey Bey # 不添加到缓存区 直接提交到本地仓库 [root@VM-2-11-centos learngit]# git commit -m "git tracks changes" [master 48681b6] git tracks changes 1 file changed, 2 insertions(+) [root@VM-2-11-centos learngit]# 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) #
# no changes added to commit (use "git add" and/or "git commit -a") # 明明提交了,然后文件仍然是处于修改的状态 # 对比工作区和git版本仓库的文件区别 [root@VM-2-11-centos learngit]# git diff HEAD -- readme.md diff --git a/readme.md b/readme.md index af2dcd8..c9d9223 100644 --- a/readme.md +++ b/readme.md @@ -2,4 +2,4 @@ Git is a version control system. Git is free software . Git is a distributed version control system Hello word! -Hello word! +Bey Bey # 重新加入缓存区 重新提交 [root@VM-2-11-centos learngit]# git add . [root@VM-2-11-centos learngit]# git commit -m "new file" readme.md [master 10cde87] new file 1 file changed, 1 insertion(+), 1 deletion(-) [root@VM-2-11-centos learngit]# [root@VM-2-11-centos learngit]# git status # On branch master nothing to commit, working directory clean
|