1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-08 17:48:01 +00:00

Add Find The Date That A File Was Added To The Repo as a git til

This commit is contained in:
jbranchaud
2019-01-25 15:55:48 -06:00
parent 9f94f5b826
commit 3333ffdc5e
2 changed files with 37 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
# Find The Date That A File Was Added To The Repo
The `git log` command has a bunch of flags that you can use to filter
commits and format their output.
We can get `git log` to only show the date for a commit in the `short`
format with the following flags:
```bash
$ git log --pretty=format:"%ad" --date=short
```
We can also get `git log` to filter commits to just those that have files
being added:
```bash
$ git log --diff-filter=A
```
Like many `git` commands, we can restrict the output to those that match a
path or file.
```bash
$ git log -- README.md
```
If we put all of these together, then we have a one-line command for getting
the date a specific file was added to the repository:
```bash
$ git log --pretty=format:"%ad" --date=short --diff-filter=A -- README.md
2015-02-06
```
See `man git-log` for more details.