From: Junio C Hamano git-init [-q | --quiet] [--template=<template_directory>] [--shared[=<permissions>]] git-init [-q | --quiet] [--bare] [--template=<template_directory>] [--shared[=<permissions>]]
+Create a bare repository. If GIT_DIR environment is not set, it is set to the
+current working directory.
+SYNOPSIS
OPTIONS
gitglossary - + A GIT Glossary +
+*
- Directed acyclic graph. The commit objects form a + Directed acyclic graph. The commit objects form a directed acyclic graph, because they have parents (directed), and the - graph of commit objects is acyclic (there is no - chain which begins and ends with the same - object). + graph of commit objects is acyclic (there is no chain + which begins and ends with the same object).
- One of the identifiers - "commit","tree","tag" or "blob" - describing the type of an object. + One of the identifiers "commit", + "tree", "tag" or + "blob" describing the type of an + object.
The term pickaxe refers to an option to the diffcore routines that help select changes that add or delete a given text - string. With the —pickaxe-all option, it can be used to view the full + string. With the --pickaxe-all option, it can be used to view the full changeset that introduced or removed, say, a particular line of text. See git-diff(1).
@@ -954,7 +967,7 @@ This commit is referred to as a "merge commit", or sometimes just a parents, even though they are recorded in the commit object). This is sometimes useful when you are interested only in the recent history of a project even though the real history recorded in the upstream is much larger. A shallow repository - is created by giving the —depth option to git-clone(1), and + is created by giving the --depth option to git-clone(1), and its history can be later deepened with git-fetch(1). @@ -1079,10 +1092,19 @@ This commit is referred to as a "merge commit", or sometimes just aPart of the git(7) suite.