File: git.txt

package info (click to toggle)
lucene9 9.10.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 114,036 kB
  • sloc: java: 775,336; python: 6,157; xml: 1,464; perl: 448; sh: 353; makefile: 11
file content (27 lines) | stat: -rw-r--r-- 792 bytes parent folder | download | duplicates (2)
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
git
===

A list of resources that may be helpful for those learning git:

 - Dawid's task-oriented help:
   https://github.com/dweiss/lucene-git-guides

 - git for computer scientists (a nice writeup on how git is essentially a graph
   of commits and labels attached to those commits):
   https://eagain.net/articles/git-for-computer-scientists/

 - git pro (book)
   https://git-scm.com/book/en/v2

 - git workflows, their pros and cons:
   https://help.github.com/articles/what-is-a-good-git-workflow/


git blame
=========

Git blame shows the last revision that touched a line in a given file. Certain
reformatting commits may stand in the way here. Please issue the following
command so that git ignores those irrelevant commits:

git config blame.ignoreRevsFile .git-blame-ignore-revs