aboutsummaryrefslogtreecommitdiff
path: root/locale/fr/LC_MESSAGES/_tils/2020-08-16-search-in-git.po
blob: 5668d466e2c506aabf0de8c3bb9554d6e8cb476d (about) (plain) (blame)
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
60
61
62
63
64
65
66
67
68
69
70
71
#
msgid ""
msgstr ""

msgid ""
"title: Search in git\n"
"date: 2020-08-16\n"
"layout: post\n"
"lang: en\n"
"ref: search-in-git"
msgstr ""

msgid "Here's a useful trio to know about to help you search things in git:"
msgstr ""

msgid "`git show <commit>`"
msgstr ""

msgid "`git log --grep='<regexp>'`"
msgstr ""

msgid "`git grep '<regexp>' [commit]`"
msgstr ""

msgid "1. `git show <commit>`"
msgstr ""

msgid "Show a specific commit and it's diff:"
msgstr ""

msgid "2. `git log --grep='<regexp>'`"
msgstr ""

msgid "Search through the commit messages:"
msgstr ""

msgid "3. `git grep '<regexp>' [commit]`"
msgstr ""

msgid "Search content in git history:"
msgstr ""

msgid ""
"And if you find an occurrence of the regexp in a specific commit and you "
"want to browse the repository in that point in time, you can [use git "
"checkout for that][0]."
msgstr ""

msgid ""
"[0]: {% link _tils/2020-08-14-browse-a-git-repository-at-a-specific-"
"commit.md %}"
msgstr ""

msgid ""
"git show\n"
"# shows the latest commit\n"
"git show <commit>\n"
"# shows an specific <commit>\n"
"git show v1.2\n"
"# shows commit tagged with v1.2\n"
msgstr ""

msgid "git log --grep='refactor'\n"
msgstr ""

msgid ""
"git grep 'TODO'\n"
"# search the repository for the \"TODO\" string\n"
"git grep 'TODO' $(git rev-list --all)\n"
"# search the whole history for \"TODO\" string\n"
msgstr ""