mirror of
https://github.com/git/git.git
synced 2026-01-14 04:37:41 +00:00
Sync with 1.7.9.5
This commit is contained in:
23
Documentation/RelNotes/1.7.9.5.txt
Normal file
23
Documentation/RelNotes/1.7.9.5.txt
Normal file
@@ -0,0 +1,23 @@
|
||||
Git v1.7.9.5 Release Notes
|
||||
==========================
|
||||
|
||||
Fixes since v1.7.9.4
|
||||
--------------------
|
||||
|
||||
* When "git config" diagnoses an error in a configuration file and
|
||||
shows the line number for the offending line, it miscounted if the
|
||||
error was at the end of line.
|
||||
|
||||
* "git fast-import" accepted "ls" command with an empty path by
|
||||
mistake.
|
||||
|
||||
* Various new-ish output decoration modes of "git grep" were not
|
||||
documented in the manual's synopsis section.
|
||||
|
||||
* The "remaining" subcommand to "git rerere" was not documented.
|
||||
|
||||
* "gitweb" used to drop warnings in the log file when "heads" view is
|
||||
accessed in a repository whose HEAD does not point at a valid
|
||||
branch.
|
||||
|
||||
Also contains minor fixes and documentation updates.
|
||||
@@ -20,7 +20,9 @@ SYNOPSIS
|
||||
[-c | --count] [--all-match] [-q | --quiet]
|
||||
[--max-depth <depth>]
|
||||
[--color[=<when>] | --no-color]
|
||||
[--break] [--heading] [-p | --show-function]
|
||||
[-A <post-context>] [-B <pre-context>] [-C <context>]
|
||||
[-W | --function-context]
|
||||
[-f <file>] [-e] <pattern>
|
||||
[--and|--or|--not|(|)|-e <pattern>...]
|
||||
[ [--exclude-standard] [--cached | --no-index | --untracked] | <tree>...]
|
||||
|
||||
@@ -409,10 +409,13 @@ The interactive mode is meant for this type of workflow:
|
||||
|
||||
where point 2. consists of several instances of
|
||||
|
||||
a. regular use
|
||||
a) regular use
|
||||
|
||||
1. finish something worthy of a commit
|
||||
2. commit
|
||||
b. independent fixup
|
||||
|
||||
b) independent fixup
|
||||
|
||||
1. realize that something does not work
|
||||
2. fix that
|
||||
3. commit it
|
||||
|
||||
@@ -44,9 +44,10 @@ unreleased) version of git, that is available from 'master'
|
||||
branch of the `git.git` repository.
|
||||
Documentation for older releases are available here:
|
||||
|
||||
* link:v1.7.9.4/git.html[documentation for release 1.7.9.4]
|
||||
* link:v1.7.9.5/git.html[documentation for release 1.7.9.5]
|
||||
|
||||
* release notes for
|
||||
link:RelNotes/1.7.9.5.txt[1.7.9.5],
|
||||
link:RelNotes/1.7.9.4.txt[1.7.9.4],
|
||||
link:RelNotes/1.7.9.3.txt[1.7.9.3],
|
||||
link:RelNotes/1.7.9.2.txt[1.7.9.2],
|
||||
@@ -711,6 +712,12 @@ other
|
||||
a pager. See also the `core.pager` option in
|
||||
linkgit:git-config[1].
|
||||
|
||||
'GIT_EDITOR'::
|
||||
This environment variable overrides `$EDITOR` and `$VISUAL`.
|
||||
It is used by several git comands when, on interactive mode,
|
||||
an editor is to be launched. See also linkgit:git-var[1]
|
||||
and the `core.editor` option in linkgit:git-config[1].
|
||||
|
||||
'GIT_SSH'::
|
||||
If this environment variable is set then 'git fetch'
|
||||
and 'git push' will use this command instead
|
||||
|
||||
Reference in New Issue
Block a user