October 2016
Beginner
861 pages
20h 37m
English
In this chapter, we will cover the following topics:
In this section, we will look at the different layers that can be configured. The layers are:
SYSTEM: This layer is system-wide and found in /etc/gitconfigGLOBAL: This layer is global for the user and found in ~/.gitconfigLOCAL: This layer is local to the current repository and found in .git/configWe will use the jgit repository for this example; clone it or use the clone you already have from Chapter 1, Navigating Git, as shown in the following command:
$ git clone https://git.eclipse.org/r/jgit/jgit ...