- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近遇到了一个.gitignore file以 ./
开始一些换行符。我不知道那些 ./
做了什么,我非常惊讶地发现这既是 a) 一个看似新颖的问题,b) 很难找到答案。
我见过these related问题,但是gitignores中./
的功能好像和bash终端中的不一样。
我的测试似乎表明 ./
只是没有做任何事情。给定文件夹结构:
C:.
│ .gitignore
├───bar
│ bar0.txt
├───baz
│ baz0.txt
└───foo
foo0.txt
还有一个 .gitignore
# .gitignore
./foo
./foo/*
./foo/
bar
/baz
如果我执行 git add -A
和 git status
,则仅跟踪这些文件:
new file: .gitignore
new file: foo/foo0.txt
那么,./
的用途是什么?
编辑:我使用的是 Windows。
最佳答案
请记住,在 Windows(和 DOS)和 Unix(包括 macOS)中,文件路径 .
中的单点指的是当前目录。
从.gitignore
文档中,相关点是:
- The slash
/
is used as the directory separator. Separators may occur at the beginning, middle or end of the.gitignore
search pattern.- If there is a separator at the beginning or middle (or both) of the pattern, then the pattern is relative to the directory level of the particular
.gitignore
file itself. Otherwise the pattern may also match at any level below the.gitignore
level.
所以:
foo
foo
的任何文件或目录以及与 .gitignore
文件相关的任何后代目录。./foo
foo
文件位于同一目录中的名为 .gitignore
的文件或目录。**
glob 的文件通配符。我不知道为什么手册上说“文件或目录”,而 git
本身不存储与目录相关的任何信息 - 仅存储文件。/foo
./foo
相同。./foo/
foo
文件位于同一目录中的名为 .gitignore
的目录。/foo/
./foo/
相同。至于为什么有人使用 ./
作为前缀而不是仅仅使用 /
,我只能推测,但可能有一些原因:
.gitignore
规则的读者立即清楚指定的路径是相对于 .gitignore
文件目录的,因为 /foo
(没有前导 .
)可以被解释为绝对路径 -路径(要么是文件系统绝对路径,尤其是在 Linux 上,例如 /usr/bin
- 要么是 git 存储库内的绝对路径).gitignore
的程序或实用程序的输出来生成 .
文件。关于git - .gitignore 中 ./(点斜杠) 的功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65639119/
我有一个右下角倾斜的元素,我必须在其上放置一个盒子阴影。有时倾斜的 Angular 被徽章覆盖 - 我的问题不适用,如果是这样的话: 这是信息框及其边 Angular 的 (s)css 部分(还有更多
是否可以在纯 html/css 中创建类似下面的内容? 我想做这个响应式和全 (100%) 宽度(最大左 Angular 100 像素,右边最小 50 像素,类似的东西)。 最佳答案 您可以通过转换(
如何在 fabricjs 文本中为文本提供渐变或斜 Angular 效果?? http://fabricjs.com/fabric-intro-part-2/ 这里给出了形状和所有示例,我将其与文本绑
我用过: http://apps.eky.hk/css-triangle-generator/ 为彼此对 Angular 放置的两个不等边三 Angular 形生成 css: 左下三 Angular
我是一名优秀的程序员,十分优秀!