summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 52e4478)
raw | patch | inline | side by side (parent: 52e4478)
author | Junio C Hamano <junkio@cox.net> | |
Sat, 29 Oct 2005 21:32:56 +0000 (14:32 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 29 Oct 2005 21:32:56 +0000 (14:32 -0700) |
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/git-commit-tree.txt | patch | blob | history | |
Documentation/git-update-index.txt | patch | blob | history | |
Documentation/git.txt | patch | blob | history |
index d9b0ab07170160dda74512843bd15e9ef350a5a5..b64cd6a84b7f08164b55445999a12460a3d3c52c 100644 (file)
- committer name and email and the commit time.
If not provided, "git-commit-tree" uses your name, hostname and domain to
-provide author and committer info. This can be overridden using the
-following environment variables.
+provide author and committer info. This can be overridden by
+either `.git/config` file, or using the following environment variables.
GIT_AUTHOR_NAME
GIT_AUTHOR_EMAIL
(nb "<", ">" and "\n"s are stripped)
+In `.git/config` file, the following items are used:
+
+ [user]
+ name = "Your Name"
+ email = "your@email.address.xz"
+
A commit comment is read from stdin (max 999 chars). If a changelog
entry is not provided via "<" redirection, "git-commit-tree" will just wait
for one to be entered and terminated with ^D.
+
Diagnostics
-----------
You don't exist. Go away!::
index 6fa1d980f6144a51b7adc865baa6b1dbf5e753d0..8b50efa4e6a4017edecacc1ed1c5f664c7c235fd 100644 (file)
SYNOPSIS
--------
'git-update-index'
- [--add] [--remove] [--refresh] [--replace]
- [--ignore-missing]
- [--force-remove]
+ [--add] [--remove] [--unmerged] [--refresh] [--replace]
[--cacheinfo <mode> <object> <file>]\*
+ [--chmod=(+|-)x]
[--info-only]
- [-z] [--stdin]
+ [--force-remove]
+ [--stdin]
+ [--index-info]
+ [--ignore-missing]
+ [-z]
[--] [<file>]\*
DESCRIPTION
<file>::
Files to act on.
- Note that files begining with '.' are discarded. This includes
+ Note that files beginning with '.' are discarded. This includes
`./file` and `dir/./file`. If you don't want this, then use
cleaner names.
The same applies to directories ending '/' and paths with '//'
git-checkout-index -n -f -a && git-update-index --ignore-missing --refresh
+Configuration
+-------------
+
+The command honors `core.filemode` configuration variable. If
+your repository is on an filesystem whose executable bits are
+unreliable, this should be set to 'false'. This causes the
+command to ignore differences in file modes recorded in the
+index and the file mode on the filesystem if they differ only on
+executable bit. On such an unfortunate filesystem, you may
+need to use `git-update-index --chmod=`.
+
Author
------
Written by Linus Torvalds <torvalds@osdl.org>
diff --git a/Documentation/git.txt b/Documentation/git.txt
index 6c80e27274fc68446f2e502ae1eb076bab57410d..59d0dc87606548ee02d60936b9cb872b1add3f8b 100644 (file)
--- a/Documentation/git.txt
+++ b/Documentation/git.txt
gitk.
+Configuration Mechanism
+-----------------------
+
+Starting from 0.99.9 (actually mid 0.99.8.GIT), .git/config file
+is used to hold per-repository configuration options. It is a
+simple text file modelled after `.ini` format familiar to some
+people. Here is an example:
+
+------------
+#
+# This is the config file, and
+# a '#' or ';' character indicates
+# a comment
+#
+
+; core variables
+[core]
+ ; Don't trust file modes
+ filemode = false
+
+; user identity
+[user]
+ name = "Junio C Hamano"
+ email = "junkio@twinsun.com"
+
+------------
+
+Various commands read from the configuration file and adjust
+their operation accordingly.
+
+
Identifier Terminology
----------------------
<object>::