Skip to content

使用 .gitignore 文件忽略指定文件

.gitignore

在 Git 中,很多时候你只想将代码提交到仓库,而不是将当前文件目录下的文件全部提交到 Git 仓库中,例如在 MacOS 系统下面的.DS_Store文件,或者是 Xocde 的操作记录,又或者是 pod 库的中一大串的源代码。这种情况下使用.gitignore就能够在 Git 提交时自动忽略掉这些文件。

忽略的格式

  • # :此为注释 – 将被 Git 忽略
  • *.a :忽略所有 .a 结尾的文件
  • !lib.a : 不忽略 lib.a 文件
  • /TODO :仅仅忽略项目根目录下的 TODO 文件,不包括 subdir/TODO
  • build/ : 忽略 build/ 目录下的所有文件
  • doc/*.txt : 会忽略 doc/notes.txt 但不包括 doc/server/arch.txt

创建方法

github 上获取

github 上整理了一些常用需要的项目中需要忽略的文件配置,根据需要进行获取

https://github.com/github/gitignore.git

通过 gitignore.io 创建(推荐)

先自定义终端命令:

macOS 下默认是\#!/bin/bash

shell
$ echo "function gi() { curl -L -s https://www.gitignore.io/api/\$@ ;}" >> ~/.bash_profile && source ~/.bash_profile

如果是 #!/bin/zsh

shell
$ echo "function gi() { curl -L -s https://www.gitignore.io/api/\$@ ;}" >> ~/.zshrc && source ~/.zshrc
使用

在当前终端目录下

shell
$ gi swift > .gitignore

就会针对 Swifit 类型的工程创建 .gitignore 文件。