xref: /Lucene/help/git.txt (revision a827aaac2bc1cc86bf182592203ea8fc749d3318)
1git
2===
3
4A list of resources that may be helpful for those learning git:
5
6 - Dawid's task-oriented help:
7   https://github.com/dweiss/lucene-git-guides
8
9 - git for computer scientists (a nice writeup on how git is essentially a graph
10   of commits and labels attached to those commits):
11   https://eagain.net/articles/git-for-computer-scientists/
12
13 - git pro (book)
14   https://git-scm.com/book/en/v2
15
16 - git workflows, their pros and cons:
17   https://help.github.com/articles/what-is-a-good-git-workflow/
18
19
20git blame
21=========
22
23Git blame shows the last revision that touched a line in a given file. Certain
24reformatting commits may stand in the way here. Please issue the following
25command so that git ignores those irrelevant commits:
26
27git config blame.ignoreRevsFile .git-blame-ignore-revs
28