October 2016
Beginner
861 pages
20h 37m
English
In this example, we will look at how we can query the existing configuration and set the configuration values.
We'll use jgit again by using the following command:
$ cd jgit
To view all the effective configurations for the current Git repository, run the following command:
$ git config --list user.name=Aske Olsson user.email=askeolsson@switch-gears.dk core.repositoryformatversion=0 core.filemode=false core.bare=false core.logallrefupdates=true remote.origin.url=https://git.eclipse.org/r/jgit/jgit remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* branch.master.remote=origin branch.master.merge=refs/heads/master
The previous output will of course reflect the user running the command. ...