git文件管理心得分享

(编辑:jimmy 日期: 2025/1/21 浏览:2)

untraked file 未跟踪的文件,通常为新建立的文件

traked file 通常为建立索引之后的文件

ignored 被忽略的文件,这类型的文件通常在一个文件列表中。维护这个列表的文件在版本库根目录名字为 .gitignore
初始化版本库,保证刚创建状态

huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo (master) 
$ ls 
hello 
huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo (master) 
$ ls -a 
./ ../ .git/ hello 
huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo (master) 
$ rm -rf .git/ hello 
huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo 
$ git init 
Initialized empty Git repository in C:/Users/huawei/Desktop/git-repo/.git/ 

创建文件查看文件类型,发现为untraked file未被跟踪的文件

huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo (master) 
$ echo "hello world" > hello 
huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo (master) 
$ git status 
On branch master 
No commits yet 
Untracked files: 
 (use "git add <file>..." to include in what will be committed) 
  hello 
nothing added to commit but untracked files present (use "git add" to track) 

被跟踪的文件通常为建立索引之后的文件,可以通过git ls-files -s查看。至于被忽略的文件可以看下面的演示,将文件名写入到.gitignore文件即可

huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo (master) 
$ git status 
On branch master 
nothing to commit, working tree clean 
huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo (master) 
$ echo "a" > a 
huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo (master) 
$ git status 
On branch master 
Untracked files: 
 (use "git add <file>..." to include in what will be committed) 
  a 
nothing added to commit but untracked files present (use "git add" to track) 
huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo (master) 
$ echo a  .gitignore 
huawei@DESKTOP-JTC012C MINGW64 ~/Desktop/git-repo (master) 
$ git status 
On branch master 
Untracked files: 
 (use "git add <file>..." to include in what will be committed) 
  .gitignore 
nothing added to commit but untracked files present (use "git add" to track) 

.gitignore文件语法

#开头的行用于注释

空行会被注释

目录名末尾用反斜线(/)标记

包含shell通配符,如*。例 debug/32bit/*.o

起始地感叹号用于取反模式

一句话新闻
一文看懂荣耀MagicBook Pro 16
荣耀猎人回归!七大亮点看懂不只是轻薄本,更是游戏本的MagicBook Pro 16.
人们对于笔记本电脑有一个固有印象:要么轻薄但性能一般,要么性能强劲但笨重臃肿。然而,今年荣耀新推出的MagicBook Pro 16刷新了人们的认知——发布会上,荣耀宣布猎人游戏本正式回归,称其继承了荣耀 HUNTER 基因,并自信地为其打出“轻薄本,更是游戏本”的口号。
众所周知,寻求轻薄本的用户普遍更看重便携性、外观造型、静谧性和打字办公等用机体验,而寻求游戏本的用户则普遍更看重硬件配置、性能释放等硬核指标。把两个看似难以相干的产品融合到一起,我们不禁对它产生了强烈的好奇:作为代表荣耀猎人游戏本的跨界新物种,它究竟做了哪些平衡以兼顾不同人群的各类需求呢?