mirror of
https://github.com/git/git.git
synced 2026-04-01 12:30:09 +02:00
Merge remote branch 'mingw/master' into devel
This commit is contained in:
46
Documentation/RelNotes-1.6.6.2.txt
Normal file
46
Documentation/RelNotes-1.6.6.2.txt
Normal file
@@ -0,0 +1,46 @@
|
||||
Git v1.6.6.2 Release Notes
|
||||
==========================
|
||||
|
||||
Fixes since v1.6.6.1
|
||||
--------------------
|
||||
|
||||
* recursive merge didn't correctly diagnose its own programming errors,
|
||||
and instead caused the caller to segfault.
|
||||
|
||||
* The new "smart http" aware clients probed the web servers to see if
|
||||
they support smart http, but did not fall back to dumb http transport
|
||||
correctly with some servers.
|
||||
|
||||
* Time based reflog syntax e.g. "@{yesterday}" didn't diagnose a misspelled
|
||||
time specification and instead assumed "@{now}".
|
||||
|
||||
* "git archive HEAD -- no-such-directory" produced an empty archive
|
||||
without complaining.
|
||||
|
||||
* "git blame -L start,end -- file" misbehaved when given a start that is
|
||||
larger than the number of lines in the file.
|
||||
|
||||
* "git checkout -m" didn't correctly call custom merge backend supplied
|
||||
by the end user.
|
||||
|
||||
* "git config -f <file>" misbehaved when run from a subdirectory.
|
||||
|
||||
* "git cvsserver" didn't like having regex metacharacters (e.g. '+') in
|
||||
CVSROOT environment.
|
||||
|
||||
* "git fast-import" did not correctly handle large blobs that may
|
||||
bust the pack size limit.
|
||||
|
||||
* "git gui" is supposed to work even when launched from inside a .git
|
||||
directory.
|
||||
|
||||
* "git gui" misbehaved when applying a hunk that ends with deletion.
|
||||
|
||||
* "git imap-send" did not honor imap.preformattedHTML as documented.
|
||||
|
||||
* "git log" family incorrectly showed the commit notes unconditionally by
|
||||
mistake, which was especially irritating when running "git log --oneline".
|
||||
|
||||
* "git status" shouldn't require an write access to the repository.
|
||||
|
||||
Other minor documentation updates are included.
|
||||
@@ -4,7 +4,7 @@ Git v1.7.0 Release Notes
|
||||
Notes on behaviour change
|
||||
-------------------------
|
||||
|
||||
* "git push" into a branch that is currently checked out (i.e. pointed by
|
||||
* "git push" into a branch that is currently checked out (i.e. pointed at by
|
||||
HEAD in a repository that is not bare) is refused by default.
|
||||
|
||||
Similarly, "git push $there :$killed" to delete the branch $killed
|
||||
@@ -19,7 +19,7 @@ Notes on behaviour change
|
||||
patch series with more than two messages. All messages will be sent
|
||||
as a reply to the first message, i.e. cover letter.
|
||||
|
||||
It has been possible to configure send-email to send "shallow thread"
|
||||
It has been possible already to configure send-email to send "shallow thread"
|
||||
by setting sendemail.chainreplyto configuration variable to false. The
|
||||
only thing this release does is to change the default when you haven't
|
||||
configured that variable.
|
||||
@@ -30,7 +30,7 @@ Notes on behaviour change
|
||||
* "git diff" traditionally treated various "ignore whitespace" options
|
||||
only as a way to filter the patch output. "git diff --exit-code -b"
|
||||
exited with non-zero status even if all changes were about changing the
|
||||
ammount of whitespace and nothing else. and "git diff -b" showed the
|
||||
amount of whitespace and nothing else; and "git diff -b" showed the
|
||||
"diff --git" header line for such a change without patch text.
|
||||
|
||||
In this release, the "ignore whitespaces" options affect the semantics
|
||||
@@ -38,7 +38,7 @@ Notes on behaviour change
|
||||
whitespaces is reported with zero exit status when run with
|
||||
--exit-code, and there is no "diff --git" header for such a change.
|
||||
|
||||
* external diff and textconv helpers are now executed using the shell.
|
||||
* External diff and textconv helpers are now executed using the shell.
|
||||
This makes them consistent with other programs executed by git, and
|
||||
allows you to pass command-line parameters to the helpers. Any helper
|
||||
paths containing spaces or other metacharacters now need to be
|
||||
@@ -46,6 +46,12 @@ Notes on behaviour change
|
||||
environment, and diff.*.command and diff.*.textconv in the config
|
||||
file.
|
||||
|
||||
* The --max-pack-size argument to 'git repack', 'git pack-objects', and
|
||||
'git fast-import' was assuming the provided size to be expressed in MiB,
|
||||
unlike the corresponding config variable and other similar options accepting
|
||||
a size value. It is now expecting a size expressed in bytes, with a possible
|
||||
unit suffix of 'k', 'm', or 'g'.
|
||||
|
||||
Updates since v1.6.6
|
||||
--------------------
|
||||
|
||||
@@ -57,7 +63,9 @@ Updates since v1.6.6
|
||||
|
||||
* "git svn" support of subversion "merge tickets" and miscellaneous fixes.
|
||||
|
||||
* "gitk" updates.
|
||||
* "gitk" and "git gui" translation updates.
|
||||
|
||||
* "gitweb" updates (code clean-up, load checking etc.)
|
||||
|
||||
(portability)
|
||||
|
||||
@@ -98,7 +106,9 @@ Updates since v1.6.6
|
||||
defaults to the current branch, so "git fetch && git merge @{upstream}"
|
||||
will be equivalent to "git pull".
|
||||
|
||||
* "git branch --set-upstream" can be used to update the (surprise!) upstream
|
||||
* "git am --resolved" has a synonym "git am --continue".
|
||||
|
||||
* "git branch --set-upstream" can be used to update the (surprise!) upstream,
|
||||
i.e. where the branch is supposed to pull and merge from (or rebase onto).
|
||||
|
||||
* "git checkout A...B" is a way to detach HEAD at the merge base between
|
||||
@@ -125,10 +135,7 @@ Updates since v1.6.6
|
||||
* "git fetch --all" can now be used in place of "git remote update".
|
||||
|
||||
* "git grep" does not rely on external grep anymore. It can use more than
|
||||
one threads to accelerate the operation.
|
||||
|
||||
* "git grep" learned "--no-index" option, to search inside contents that
|
||||
are not managed by git.
|
||||
one thread to accelerate the operation.
|
||||
|
||||
* "git grep" learned "--quiet" option.
|
||||
|
||||
@@ -154,13 +161,13 @@ Updates since v1.6.6
|
||||
* "git rebase --onto A...B" means the history is replayed on top of the
|
||||
merge base between A and B.
|
||||
|
||||
* "git rebase -i" learned new action "fixup", that squashes the change
|
||||
* "git rebase -i" learned new action "fixup" that squashes the change
|
||||
but does not affect existing log message.
|
||||
|
||||
* "git rebase -i" also learned --autosquash option, that is useful
|
||||
* "git rebase -i" also learned --autosquash option that is useful
|
||||
together with the new "fixup" action.
|
||||
|
||||
* "git remote" learned set-url subcommand, to update (surprise!) url
|
||||
* "git remote" learned set-url subcommand that updates (surprise!) url
|
||||
for an existing remote nickname.
|
||||
|
||||
* "git rerere" learned "forget path" subcommand. Together with "git
|
||||
@@ -195,19 +202,13 @@ release, unless otherwise noted.
|
||||
the branch is fully merged to its upstream branch if it is not merged
|
||||
to the current branch. It now deletes it in such a case.
|
||||
|
||||
* "git config -f <relative path>" run from a subdirectory misbehaved.
|
||||
65807ee (builtin-config: Fix crash when using "-f <relative path>"
|
||||
from non-root dir, 2010-01-26) may be merged to older maintenance
|
||||
branches.
|
||||
* "fiter-branch" command incorrectly said --prune-empty and --filter-commit
|
||||
were incompatible; the latter should be read as --commit-filter.
|
||||
|
||||
* When "git diff" is asked to compare the work tree with something,
|
||||
it used to consider that a checked-out submodule with uncommitted
|
||||
changes is not modified; this could cause people to forget committing
|
||||
these changes in the submodule before committing in the superproject.
|
||||
It now considers such a change as a modification.
|
||||
|
||||
--
|
||||
exec >/var/tmp/1
|
||||
O=v1.7.0-rc1-6-g2ee8c5b
|
||||
echo O=$(git describe master)
|
||||
git shortlog --no-merges $O..master ^maint
|
||||
* When using "git status" or asking "git diff" to compare the work tree
|
||||
with something, they used to consider that a checked-out submodule with
|
||||
uncommitted changes is not modified; this could cause people to forget
|
||||
committing these changes in the submodule before committing in the
|
||||
superproject. They now consider such a change as a modification and
|
||||
"git diff" will append a "-dirty" to the work tree side when generating
|
||||
patch output or when used with the --submodule option.
|
||||
|
||||
@@ -423,6 +423,20 @@ You probably do not need to adjust this value.
|
||||
+
|
||||
Common unit suffixes of 'k', 'm', or 'g' are supported.
|
||||
|
||||
core.bigFileThreshold::
|
||||
Files larger than this size are stored deflated, without
|
||||
attempting delta compression. Storing large files without
|
||||
delta compression avoids excessive memory usage, at the
|
||||
slight expense of increased disk usage.
|
||||
+
|
||||
Default is 512 MiB on all platforms. This should be reasonable
|
||||
for most projects as source code and other text files can still
|
||||
be delta compressed, but larger binary media files won't be.
|
||||
+
|
||||
Common unit suffixes of 'k', 'm', or 'g' are supported.
|
||||
+
|
||||
Currently only linkgit:git-fast-import[1] honors this setting.
|
||||
|
||||
core.excludesfile::
|
||||
In addition to '.gitignore' (per-directory) and
|
||||
'.git/info/exclude', git looks into this file for patterns
|
||||
@@ -1360,10 +1374,13 @@ you can use linkgit:git-index-pack[1] on the *.pack file to regenerate
|
||||
the `{asterisk}.idx` file.
|
||||
|
||||
pack.packSizeLimit::
|
||||
The default maximum size of a pack. This setting only affects
|
||||
packing to a file, i.e. the git:// protocol is unaffected. It
|
||||
can be overridden by the `\--max-pack-size` option of
|
||||
linkgit:git-repack[1].
|
||||
The maximum size of a pack. This setting only affects
|
||||
packing to a file when repacking, i.e. the git:// protocol
|
||||
is unaffected. It can be overridden by the `\--max-pack-size`
|
||||
option of linkgit:git-repack[1]. The minimum size allowed is
|
||||
limited to 1 MiB. The default is unlimited.
|
||||
Common unit suffixes of 'k', 'm', or 'g' are
|
||||
supported.
|
||||
|
||||
pager.<cmd>::
|
||||
Allows turning on or off pagination of the output of a
|
||||
|
||||
@@ -153,7 +153,7 @@ EXAMPLES
|
||||
and its subdirectories:
|
||||
+
|
||||
------------
|
||||
$ git add Documentation/\\*.txt
|
||||
$ git add Documentation/\*.txt
|
||||
------------
|
||||
+
|
||||
Note that the asterisk `\*` is quoted from the shell in this
|
||||
|
||||
@@ -15,7 +15,7 @@ SYNOPSIS
|
||||
[--whitespace=<option>] [-C<n>] [-p<n>] [--directory=<dir>]
|
||||
[--reject] [-q | --quiet] [--scissors | --no-scissors]
|
||||
[<mbox> | <Maildir>...]
|
||||
'git am' (--skip | --resolved | --abort)
|
||||
'git am' (--continue | --skip | --abort)
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
@@ -107,6 +107,7 @@ default. You can use `--no-utf8` to override this.
|
||||
Skip the current patch. This is only meaningful when
|
||||
restarting an aborted patch.
|
||||
|
||||
--continue::
|
||||
-r::
|
||||
--resolved::
|
||||
After a patch failure (e.g. attempting to apply
|
||||
|
||||
@@ -112,6 +112,14 @@ export-subst::
|
||||
expand several placeholders when adding this file to an archive.
|
||||
See linkgit:gitattributes[5] for details.
|
||||
|
||||
Note that attributes are by default taken from the `.gitattributes` files
|
||||
in the tree that is being archived. If you want to tweak the way the
|
||||
output is generated after the fact (e.g. you committed without adding an
|
||||
appropriate export-ignore in its `.gitattributes`), adjust the checked out
|
||||
`.gitattributes` file as necessary and use `--work-tree-attributes`
|
||||
option. Alternatively you can keep necessary attributes that should apply
|
||||
while archiving any tree in your `$GIT_DIR/info/attributes` file.
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
git archive --format=tar --prefix=junk/ HEAD | (cd /var/tmp/ && tar xf -)::
|
||||
|
||||
@@ -43,7 +43,7 @@ imposes the following rules on how references are named:
|
||||
|
||||
. They cannot contain a sequence `@{`.
|
||||
|
||||
- They cannot contain a `\\`.
|
||||
. They cannot contain a `\`.
|
||||
|
||||
These rules make it easy for shell script based tools to parse
|
||||
reference names, pathname expansion by the shell when a reference name is used
|
||||
|
||||
@@ -33,8 +33,8 @@ OPTIONS
|
||||
|
||||
-f::
|
||||
--force::
|
||||
If the git configuration specifies clean.requireForce as true,
|
||||
'git clean' will refuse to run unless given -f or -n.
|
||||
If the git configuration variable clean.requireForce is not set
|
||||
to false, 'git clean' will refuse to run unless given -f or -n.
|
||||
|
||||
-n::
|
||||
--dry-run::
|
||||
|
||||
@@ -44,12 +44,18 @@ OPTIONS
|
||||
not contain the old commit).
|
||||
|
||||
--max-pack-size=<n>::
|
||||
Maximum size of each output packfile, expressed in MiB.
|
||||
The default is 4096 (4 GiB) as that is the maximum allowed
|
||||
Maximum size of each output packfile.
|
||||
The default is 4 GiB as that is the maximum allowed
|
||||
packfile size (due to file format limitations). Some
|
||||
importers may wish to lower this, such as to ensure the
|
||||
resulting packfiles fit on CDs.
|
||||
|
||||
--big-file-threshold=<n>::
|
||||
Maximum size of a blob that fast-import will attempt to
|
||||
create a delta for, expressed in bytes. The default is 512m
|
||||
(512 MiB). Some importers may wish to lower this on systems
|
||||
with constrained memory.
|
||||
|
||||
--depth=<n>::
|
||||
Maximum delta depth, for blob and tree deltification.
|
||||
Default is 10.
|
||||
|
||||
@@ -358,7 +358,7 @@ To move the whole tree into a subdirectory, or remove it from there:
|
||||
|
||||
---------------------------------------------------------------
|
||||
git filter-branch --index-filter \
|
||||
'git ls-files -s | sed "s-\t-&newsubdir/-" |
|
||||
'git ls-files -s | sed "s-\t\"*-&newsubdir/-" |
|
||||
GIT_INDEX_FILE=$GIT_INDEX_FILE.new \
|
||||
git update-index --index-info &&
|
||||
mv $GIT_INDEX_FILE.new $GIT_INDEX_FILE' HEAD
|
||||
|
||||
@@ -105,8 +105,9 @@ base-name::
|
||||
`--window-memory=0` makes memory usage unlimited, which is the
|
||||
default.
|
||||
|
||||
--max-pack-size=<n>::
|
||||
Maximum size of each output packfile, expressed in MiB.
|
||||
--max-pack-size=[N]::
|
||||
Maximum size of each output pack file. The size can be suffixed with
|
||||
"k", "m", or "g". The minimum size allowed is limited to 1 MiB.
|
||||
If specified, multiple packfiles may be created.
|
||||
The default is unlimited, unless the config variable
|
||||
`pack.packSizeLimit` is set.
|
||||
|
||||
@@ -176,12 +176,17 @@ If --porcelain is used, then each line of the output is of the form:
|
||||
<flag> \t <from>:<to> \t <summary> (<reason>)
|
||||
-------------------------------
|
||||
|
||||
The status of up-to-date refs is shown only if --porcelain or --verbose
|
||||
option is used.
|
||||
|
||||
flag::
|
||||
A single character indicating the status of the ref. This is
|
||||
blank for a successfully pushed ref, `!` for a ref that was
|
||||
rejected or failed to push, and '=' for a ref that was up to
|
||||
date and did not need pushing (note that the status of up to
|
||||
date refs is shown only when `git push` is running verbosely).
|
||||
A single character indicating the status of the ref:
|
||||
(space);; for a successfully pushed fast-forward;
|
||||
`{plus}`;; for a successful forced update;
|
||||
`-`;; for a successfully deleted ref;
|
||||
`*`;; for a successfully pushed new ref;
|
||||
`!`;; for a ref that was rejected or failed to push; and
|
||||
`=`;; for a ref that was up to date and did not need pushing.
|
||||
|
||||
summary::
|
||||
For a successfully pushed ref, the summary shows the old and new
|
||||
|
||||
@@ -98,24 +98,26 @@ other objects in that pack they already have locally.
|
||||
`--window-memory=0` makes memory usage unlimited, which is the
|
||||
default.
|
||||
|
||||
--max-pack-size=<n>::
|
||||
Maximum size of each output packfile, expressed in MiB.
|
||||
--max-pack-size=[N]::
|
||||
Maximum size of each output pack file. The size can be suffixed with
|
||||
"k", "m", or "g". The minimum size allowed is limited to 1 MiB.
|
||||
If specified, multiple packfiles may be created.
|
||||
The default is unlimited.
|
||||
The default is unlimited, unless the config variable
|
||||
`pack.packSizeLimit` is set.
|
||||
|
||||
|
||||
Configuration
|
||||
-------------
|
||||
|
||||
When configuration variable `repack.UseDeltaBaseOffset` is set
|
||||
for the repository, the command passes `--delta-base-offset`
|
||||
option to 'git pack-objects'; this typically results in slightly
|
||||
smaller packs, but the generated packs are incompatible with
|
||||
versions of git older than (and including) v1.4.3; do not set
|
||||
the variable in a repository that older version of git needs to
|
||||
be able to read (this includes repositories from which packs can
|
||||
be copied out over http or rsync, and people who obtained packs
|
||||
that way can try to use older git with it).
|
||||
By default, the command passes `--delta-base-offset` option to
|
||||
'git pack-objects'; this typically results in slightly smaller packs,
|
||||
but the generated packs are incompatible with versions of Git older than
|
||||
version 1.4.4. If you need to share your repository with such ancient Git
|
||||
versions, either directly or via the dumb http or rsync protocol, then you
|
||||
need to set the configuration variable `repack.UseDeltaBaseOffset` to
|
||||
"false" and repack. Access from old Git versions over the native protocol
|
||||
is unaffected by this option as the conversion is performed on the fly
|
||||
as needed in that case.
|
||||
|
||||
|
||||
Author
|
||||
|
||||
@@ -244,7 +244,7 @@ when you run 'git merge'.
|
||||
* The special construct '@\{-<n>\}' means the <n>th branch checked out
|
||||
before the current one.
|
||||
|
||||
* The suffix '@{upstream}' to a ref (short form 'ref@{u}') refers to
|
||||
* The suffix '@\{upstream\}' to a ref (short form 'ref@\{u\}') refers to
|
||||
the branch the ref is set to build on top of. Missing ref defaults
|
||||
to the current branch.
|
||||
|
||||
|
||||
@@ -43,9 +43,15 @@ unreleased) version of git, that is available from 'master'
|
||||
branch of the `git.git` repository.
|
||||
Documentation for older releases are available here:
|
||||
|
||||
* link:v1.6.6.1/git.html[documentation for release 1.6.6.1]
|
||||
* link:v1.7.0/git.html[documentation for release 1.7.0]
|
||||
|
||||
* release notes for
|
||||
link:RelNotes-1.7.0.txt[1.7.0].
|
||||
|
||||
* link:v1.6.6.2/git.html[documentation for release 1.6.6.2]
|
||||
|
||||
* release notes for
|
||||
link:RelNotes-1.6.6.2.txt[1.6.6.2],
|
||||
link:RelNotes-1.6.6.1.txt[1.6.6.1],
|
||||
link:RelNotes-1.6.6.txt[1.6.6].
|
||||
|
||||
|
||||
@@ -3640,6 +3640,26 @@ Did you forget to 'git add'?
|
||||
Unable to checkout '261dfac35cb99d380eb966e102c1197139f7fa24' in submodule path 'a'
|
||||
-------------------------------------------------
|
||||
|
||||
In older git versions it could be easily forgotten to commit new or modified
|
||||
files in a submodule, which silently leads to similar problems as not pushing
|
||||
the submodule changes. Starting with git 1.7.0 both "git status" and "git diff"
|
||||
in the superproject show submodules as modified when they contain new or
|
||||
modified files to protect against accidentally committing such a state. "git
|
||||
diff" will also add a "-dirty" to the work tree side when generating patch
|
||||
output or used with the --submodule option:
|
||||
|
||||
-------------------------------------------------
|
||||
$ git diff
|
||||
diff --git a/sub b/sub
|
||||
--- a/sub
|
||||
+++ b/sub
|
||||
@@ -1 +1 @@
|
||||
-Subproject commit 3f356705649b5d566d97ff843cf193359229a453
|
||||
+Subproject commit 3f356705649b5d566d97ff843cf193359229a453-dirty
|
||||
$ git diff --submodule
|
||||
Submodule sub 3f35670..3f35670-dirty:
|
||||
-------------------------------------------------
|
||||
|
||||
You also should not rewind branches in a submodule beyond commits that were
|
||||
ever recorded in any superproject.
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
GVF=GIT-VERSION-FILE
|
||||
DEF_VER=v1.6.6.GIT
|
||||
DEF_VER=v1.7.0
|
||||
|
||||
LF='
|
||||
'
|
||||
|
||||
65
Makefile
65
Makefile
@@ -275,29 +275,6 @@ pathsep = :
|
||||
# JavaScript minifier invocation that can function as filter
|
||||
JSMIN =
|
||||
|
||||
# default configuration for gitweb
|
||||
GITWEB_CONFIG = gitweb_config.perl
|
||||
GITWEB_CONFIG_SYSTEM = /etc/gitweb.conf
|
||||
GITWEB_HOME_LINK_STR = projects
|
||||
GITWEB_SITENAME =
|
||||
GITWEB_PROJECTROOT = /pub/git
|
||||
GITWEB_PROJECT_MAXDEPTH = 2007
|
||||
GITWEB_EXPORT_OK =
|
||||
GITWEB_STRICT_EXPORT =
|
||||
GITWEB_BASE_URL =
|
||||
GITWEB_LIST =
|
||||
GITWEB_HOMETEXT = indextext.html
|
||||
GITWEB_CSS = gitweb.css
|
||||
GITWEB_LOGO = git-logo.png
|
||||
GITWEB_FAVICON = git-favicon.png
|
||||
ifdef JSMIN
|
||||
GITWEB_JS = gitweb.min.js
|
||||
else
|
||||
GITWEB_JS = gitweb.js
|
||||
endif
|
||||
GITWEB_SITE_HEADER =
|
||||
GITWEB_SITE_FOOTER =
|
||||
|
||||
export prefix bindir sharedir sysconfdir
|
||||
|
||||
CC = gcc
|
||||
@@ -1521,6 +1498,11 @@ $(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
|
||||
chmod +x $@+ && \
|
||||
mv $@+ $@
|
||||
|
||||
|
||||
.PHONY: gitweb
|
||||
gitweb:
|
||||
$(QUIET_SUBDIR0)gitweb $(QUIET_SUBDIR1) all
|
||||
|
||||
ifdef JSMIN
|
||||
OTHER_PROGRAMS += gitweb/gitweb.cgi gitweb/gitweb.min.js
|
||||
gitweb/gitweb.cgi: gitweb/gitweb.perl gitweb/gitweb.min.js
|
||||
@@ -1528,30 +1510,13 @@ else
|
||||
OTHER_PROGRAMS += gitweb/gitweb.cgi
|
||||
gitweb/gitweb.cgi: gitweb/gitweb.perl
|
||||
endif
|
||||
$(QUIET_GEN)$(RM) $@ $@+ && \
|
||||
sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
|
||||
-e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
|
||||
-e 's|++GIT_BINDIR++|$(bindir)|g' \
|
||||
-e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
|
||||
-e 's|++GITWEB_CONFIG_SYSTEM++|$(GITWEB_CONFIG_SYSTEM)|g' \
|
||||
-e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
|
||||
-e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
|
||||
-e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
|
||||
-e 's|"++GITWEB_PROJECT_MAXDEPTH++"|$(GITWEB_PROJECT_MAXDEPTH)|g' \
|
||||
-e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
|
||||
-e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
|
||||
-e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
|
||||
-e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
|
||||
-e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
|
||||
-e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
|
||||
-e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
|
||||
-e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
|
||||
-e 's|++GITWEB_JS++|$(GITWEB_JS)|g' \
|
||||
-e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
|
||||
-e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
|
||||
$< >$@+ && \
|
||||
chmod +x $@+ && \
|
||||
mv $@+ $@
|
||||
$(QUIET_SUBDIR0)gitweb $(QUIET_SUBDIR1) $(patsubst gitweb/%,%,$@)
|
||||
|
||||
ifdef JSMIN
|
||||
gitweb/gitweb.min.js: gitweb/gitweb.js
|
||||
$(QUIET_SUBDIR0)gitweb $(QUIET_SUBDIR1) $(patsubst gitweb/%,%,$@)
|
||||
endif # JSMIN
|
||||
|
||||
|
||||
git-instaweb: git-instaweb.sh gitweb/gitweb.cgi gitweb/gitweb.css gitweb/gitweb.js
|
||||
$(QUIET_GEN)$(RM) $@ $@+ && \
|
||||
@@ -1578,12 +1543,6 @@ $(patsubst %.perl,%,$(SCRIPT_PERL)) git-instaweb: % : unimplemented.sh
|
||||
mv $@+ $@
|
||||
endif # NO_PERL
|
||||
|
||||
|
||||
ifdef JSMIN
|
||||
gitweb/gitweb.min.js: gitweb/gitweb.js
|
||||
$(QUIET_GEN)$(JSMIN) <$< >$@
|
||||
endif # JSMIN
|
||||
|
||||
ifndef NO_PYTHON
|
||||
$(patsubst %.py,%,$(SCRIPT_PYTHON)): GIT-CFLAGS
|
||||
$(patsubst %.py,%,$(SCRIPT_PYTHON)): % : %.py
|
||||
|
||||
@@ -70,7 +70,7 @@ static const char *format_from_name(const char *filename)
|
||||
return NULL;
|
||||
ext++;
|
||||
if (!strcasecmp(ext, "zip"))
|
||||
return "zip";
|
||||
return "--format=zip";
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -84,7 +84,7 @@ int cmd_archive(int argc, const char **argv, const char *prefix)
|
||||
const char *exec = "git-upload-archive";
|
||||
const char *output = NULL;
|
||||
const char *remote = NULL;
|
||||
const char *format = NULL;
|
||||
const char *format_option = NULL;
|
||||
struct option local_opts[] = {
|
||||
OPT_STRING('o', "output", &output, "file",
|
||||
"write the archive to this file"),
|
||||
@@ -92,33 +92,31 @@ int cmd_archive(int argc, const char **argv, const char *prefix)
|
||||
"retrieve the archive from remote repository <repo>"),
|
||||
OPT_STRING(0, "exec", &exec, "cmd",
|
||||
"path to the remote git-upload-archive command"),
|
||||
OPT_STRING(0, "format", &format, "fmt", "archive format"),
|
||||
OPT_END()
|
||||
};
|
||||
char fmt_opt[32];
|
||||
|
||||
argc = parse_options(argc, argv, prefix, local_opts, NULL,
|
||||
PARSE_OPT_KEEP_ALL);
|
||||
|
||||
if (output) {
|
||||
create_output_file(output);
|
||||
if (!format)
|
||||
format = format_from_name(output);
|
||||
format_option = format_from_name(output);
|
||||
}
|
||||
|
||||
if (format) {
|
||||
sprintf(fmt_opt, "--format=%s", format);
|
||||
/*
|
||||
* We have enough room in argv[] to muck it in place,
|
||||
* because either --format and/or --output must have
|
||||
* been given on the original command line if we get
|
||||
* to this point, and parse_options() must have eaten
|
||||
* it, i.e. we can add back one element to the array.
|
||||
* But argv[] may contain "--"; we should make it the
|
||||
* first option.
|
||||
*/
|
||||
/*
|
||||
* We have enough room in argv[] to muck it in place, because
|
||||
* --output must have been given on the original command line
|
||||
* if we get to this point, and parse_options() must have eaten
|
||||
* it, i.e. we can add back one element to the array.
|
||||
*
|
||||
* We add a fake --format option at the beginning, with the
|
||||
* format inferred from our output filename. This way explicit
|
||||
* --format options can override it, and the fake option is
|
||||
* inserted before any "--" that might have been given.
|
||||
*/
|
||||
if (format_option) {
|
||||
memmove(argv + 2, argv + 1, sizeof(*argv) * argc);
|
||||
argv[1] = fmt_opt;
|
||||
argv[1] = format_option;
|
||||
argv[++argc] = NULL;
|
||||
}
|
||||
|
||||
|
||||
@@ -2433,7 +2433,7 @@ parse_done:
|
||||
if (top < 1)
|
||||
top = lno;
|
||||
bottom--;
|
||||
if (lno < top)
|
||||
if (lno < top || lno < bottom)
|
||||
die("file %s has only %lu lines", path, lno);
|
||||
|
||||
ent = xcalloc(1, sizeof(*ent));
|
||||
|
||||
@@ -67,8 +67,8 @@ int cmd_clean(int argc, const char **argv, const char *prefix)
|
||||
die("-x and -X cannot be used together");
|
||||
|
||||
if (!show_only && !force)
|
||||
die("clean.requireForce%s set and -n or -f not given; "
|
||||
"refusing to clean", config_set ? "" : " not");
|
||||
die("clean.requireForce %s to true and neither -n nor -f given; "
|
||||
"refusing to clean", config_set ? "set" : "defaults");
|
||||
|
||||
if (force > 1)
|
||||
rm_flags = 0;
|
||||
|
||||
@@ -578,7 +578,7 @@ static struct option fsck_opts[] = {
|
||||
OPT_BOOLEAN(0, "root", &show_root, "report root nodes"),
|
||||
OPT_BOOLEAN(0, "cache", &keep_cache_objects, "make index objects head nodes"),
|
||||
OPT_BOOLEAN(0, "reflogs", &include_reflogs, "make reflogs head nodes (default)"),
|
||||
OPT_BOOLEAN(0, "full", &check_full, "also consider alternate objects"),
|
||||
OPT_BOOLEAN(0, "full", &check_full, "also consider packs and alternate objects"),
|
||||
OPT_BOOLEAN(0, "strict", &check_strict, "enable more strict checking"),
|
||||
OPT_BOOLEAN(0, "lost-found", &write_lost_and_found,
|
||||
"write dangling objects in .git/lost-found"),
|
||||
|
||||
@@ -14,7 +14,6 @@
|
||||
#include "userdiff.h"
|
||||
#include "grep.h"
|
||||
#include "quote.h"
|
||||
#include "dir.h"
|
||||
|
||||
#ifndef NO_PTHREADS
|
||||
#include "thread-utils.h"
|
||||
@@ -646,24 +645,6 @@ static int grep_object(struct grep_opt *opt, const char **paths,
|
||||
die("unable to grep from object of type %s", typename(obj->type));
|
||||
}
|
||||
|
||||
static int grep_directory(struct grep_opt *opt, const char **paths)
|
||||
{
|
||||
struct dir_struct dir;
|
||||
int i, hit = 0;
|
||||
|
||||
memset(&dir, 0, sizeof(dir));
|
||||
setup_standard_excludes(&dir);
|
||||
|
||||
fill_directory(&dir, paths);
|
||||
for (i = 0; i < dir.nr; i++) {
|
||||
hit |= grep_file(opt, dir.entries[i]->name);
|
||||
if (hit && opt->status_only)
|
||||
break;
|
||||
}
|
||||
free_grep_patterns(opt);
|
||||
return hit;
|
||||
}
|
||||
|
||||
static int context_callback(const struct option *opt, const char *arg,
|
||||
int unset)
|
||||
{
|
||||
@@ -758,12 +739,9 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||
const char **paths = NULL;
|
||||
int i;
|
||||
int dummy;
|
||||
int nongit = 0, use_index = 1;
|
||||
struct option options[] = {
|
||||
OPT_BOOLEAN(0, "cached", &cached,
|
||||
"search in index instead of in the work tree"),
|
||||
OPT_BOOLEAN(0, "index", &use_index,
|
||||
"--no-index finds in contents not managed by git"),
|
||||
OPT_GROUP(""),
|
||||
OPT_BOOLEAN('v', "invert-match", &opt.invert,
|
||||
"show non-matching lines"),
|
||||
@@ -846,8 +824,6 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||
OPT_END()
|
||||
};
|
||||
|
||||
prefix = setup_git_directory_gently(&nongit);
|
||||
|
||||
/*
|
||||
* 'git grep -h', unlike 'git grep -h <pattern>', is a request
|
||||
* to show usage information and exit.
|
||||
@@ -885,10 +861,6 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||
PARSE_OPT_STOP_AT_NON_OPTION |
|
||||
PARSE_OPT_NO_INTERNAL_HELP);
|
||||
|
||||
if (use_index && nongit)
|
||||
/* die the same way as if we did it at the beginning */
|
||||
setup_git_directory();
|
||||
|
||||
/* First unrecognized non-option token */
|
||||
if (argc > 0 && !opt.pattern_list) {
|
||||
append_grep_pattern(&opt, argv[0], "command line", 0,
|
||||
@@ -950,18 +922,6 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||
paths[1] = NULL;
|
||||
}
|
||||
|
||||
if (!use_index) {
|
||||
int hit;
|
||||
if (cached)
|
||||
die("--cached cannot be used with --no-index.");
|
||||
if (list.nr)
|
||||
die("--no-index cannot be used with revs.");
|
||||
hit = grep_directory(&opt, paths);
|
||||
if (use_threads)
|
||||
hit |= wait_all();
|
||||
return !hit;
|
||||
}
|
||||
|
||||
if (!list.nr) {
|
||||
int hit;
|
||||
if (!cached)
|
||||
|
||||
@@ -77,7 +77,7 @@ static int allow_ofs_delta;
|
||||
static const char *base_name;
|
||||
static int progress = 1;
|
||||
static int window = 10;
|
||||
static uint32_t pack_size_limit, pack_size_limit_cfg;
|
||||
static unsigned long pack_size_limit, pack_size_limit_cfg;
|
||||
static int depth = 50;
|
||||
static int delta_search_threads;
|
||||
static int pack_to_stdout;
|
||||
@@ -246,7 +246,7 @@ static unsigned long write_object(struct sha1file *f,
|
||||
|
||||
type = entry->type;
|
||||
|
||||
/* write limit if limited packsize and not first object */
|
||||
/* apply size limit if limited packsize and not first object */
|
||||
if (!pack_size_limit || !nr_written)
|
||||
limit = 0;
|
||||
else if (pack_size_limit <= write_offset)
|
||||
@@ -443,7 +443,7 @@ static int write_one(struct sha1file *f,
|
||||
|
||||
/* offset is non zero if object is written already. */
|
||||
if (e->idx.offset || e->preferred_base)
|
||||
return 1;
|
||||
return -1;
|
||||
|
||||
/* if we are deltified, write out base object first. */
|
||||
if (e->delta && !write_one(f, e->delta, offset))
|
||||
@@ -587,19 +587,6 @@ static void write_pack_file(void)
|
||||
if (written != nr_result)
|
||||
die("wrote %"PRIu32" objects while expecting %"PRIu32,
|
||||
written, nr_result);
|
||||
/*
|
||||
* We have scanned through [0 ... i). Since we have written
|
||||
* the correct number of objects, the remaining [i ... nr_objects)
|
||||
* items must be either already written (due to out-of-order delta base)
|
||||
* or a preferred base. Count those which are neither and complain if any.
|
||||
*/
|
||||
for (j = 0; i < nr_objects; i++) {
|
||||
struct object_entry *e = objects + i;
|
||||
j += !e->idx.offset && !e->preferred_base;
|
||||
}
|
||||
if (j)
|
||||
die("wrote %"PRIu32" objects as expected but %"PRIu32
|
||||
" unwritten", written, j);
|
||||
}
|
||||
|
||||
static int locate_object_entry_hash(const unsigned char *sha1)
|
||||
@@ -2203,10 +2190,8 @@ int cmd_pack_objects(int argc, const char **argv, const char *prefix)
|
||||
continue;
|
||||
}
|
||||
if (!prefixcmp(arg, "--max-pack-size=")) {
|
||||
char *end;
|
||||
pack_size_limit_cfg = 0;
|
||||
pack_size_limit = strtoul(arg+16, &end, 0) * 1024 * 1024;
|
||||
if (!arg[16] || *end)
|
||||
if (!git_parse_ulong(arg+16, &pack_size_limit))
|
||||
usage(pack_usage);
|
||||
continue;
|
||||
}
|
||||
@@ -2346,9 +2331,12 @@ int cmd_pack_objects(int argc, const char **argv, const char *prefix)
|
||||
|
||||
if (!pack_to_stdout && !pack_size_limit)
|
||||
pack_size_limit = pack_size_limit_cfg;
|
||||
|
||||
if (pack_to_stdout && pack_size_limit)
|
||||
die("--max-pack-size cannot be used to build a pack for transfer.");
|
||||
if (pack_size_limit && pack_size_limit < 1024*1024) {
|
||||
warning("minimum pack size limit is 1 MiB");
|
||||
pack_size_limit = 1024*1024;
|
||||
}
|
||||
|
||||
if (!pack_to_stdout && thin)
|
||||
die("--thin cannot be used to build an indexable pack.");
|
||||
|
||||
17
configure.ac
17
configure.ac
@@ -23,21 +23,32 @@ AC_DEFUN([GIT_CONF_APPEND_LINE],
|
||||
# GIT_ARG_SET_PATH(PROGRAM)
|
||||
# -------------------------
|
||||
# Provide --with-PROGRAM=PATH option to set PATH to PROGRAM
|
||||
# Optional second argument allows setting NO_PROGRAM=YesPlease if
|
||||
# --without-PROGRAM version used.
|
||||
AC_DEFUN([GIT_ARG_SET_PATH],
|
||||
[AC_ARG_WITH([$1],
|
||||
[AS_HELP_STRING([--with-$1=PATH],
|
||||
[provide PATH to $1])],
|
||||
[GIT_CONF_APPEND_PATH($1)],[])
|
||||
[GIT_CONF_APPEND_PATH($1,$2)],[])
|
||||
])# GIT_ARG_SET_PATH
|
||||
#
|
||||
# GIT_CONF_APPEND_PATH(PROGRAM)
|
||||
# ------------------------------
|
||||
# Parse --with-PROGRAM=PATH option to set PROGRAM_PATH=PATH
|
||||
# Used by GIT_ARG_SET_PATH(PROGRAM)
|
||||
# Optional second argument allows setting NO_PROGRAM=YesPlease if
|
||||
# --without-PROGRAM is used.
|
||||
AC_DEFUN([GIT_CONF_APPEND_PATH],
|
||||
[PROGRAM=m4_toupper($1); \
|
||||
if test "$withval" = "no"; then \
|
||||
AC_MSG_ERROR([You cannot use git without $1]); \
|
||||
if test -n "$2"; then \
|
||||
m4_toupper($1)_PATH=$withval; \
|
||||
AC_MSG_NOTICE([Disabling use of ${PROGRAM}]); \
|
||||
GIT_CONF_APPEND_LINE(NO_${PROGRAM}=YesPlease); \
|
||||
GIT_CONF_APPEND_LINE(${PROGRAM}_PATH=); \
|
||||
else \
|
||||
AC_MSG_ERROR([You cannot use git without $1]); \
|
||||
fi; \
|
||||
else \
|
||||
if test "$withval" = "yes"; then \
|
||||
AC_MSG_WARN([You should provide path for --with-$1=PATH]); \
|
||||
@@ -277,7 +288,7 @@ GIT_ARG_SET_PATH(shell)
|
||||
GIT_ARG_SET_PATH(perl)
|
||||
#
|
||||
# Define PYTHON_PATH to provide path to Python.
|
||||
GIT_ARG_SET_PATH(python)
|
||||
GIT_ARG_SET_PATH(python, allow-without)
|
||||
#
|
||||
# Define ZLIB_PATH to provide path to zlib.
|
||||
GIT_ARG_SET_PATH(zlib)
|
||||
|
||||
@@ -667,7 +667,7 @@ _git_am ()
|
||||
{
|
||||
local cur="${COMP_WORDS[COMP_CWORD]}" dir="$(__gitdir)"
|
||||
if [ -d "$dir"/rebase-apply ]; then
|
||||
__gitcomp "--skip --resolved --abort"
|
||||
__gitcomp "--skip --continue --resolved --abort"
|
||||
return
|
||||
fi
|
||||
case "$cur" in
|
||||
@@ -1386,6 +1386,7 @@ _git_rebase ()
|
||||
--preserve-merges --stat --no-stat
|
||||
--committer-date-is-author-date --ignore-date
|
||||
--ignore-whitespace --whitespace=
|
||||
--autosquash
|
||||
"
|
||||
|
||||
return
|
||||
|
||||
@@ -1037,7 +1037,7 @@ class P4Sync(Command):
|
||||
|
||||
if includeFile:
|
||||
filesForCommit.append(f)
|
||||
if f['action'] not in ('delete', 'purge'):
|
||||
if f['action'] not in ('delete', 'move/delete', 'purge'):
|
||||
filesToRead.append(f)
|
||||
else:
|
||||
filesToDelete.append(f)
|
||||
|
||||
194
fast-import.c
194
fast-import.c
@@ -281,6 +281,7 @@ struct recent_command
|
||||
/* Configured limits on output */
|
||||
static unsigned long max_depth = 10;
|
||||
static off_t max_packsize = (1LL << 32) - 1;
|
||||
static uintmax_t big_file_threshold = 512 * 1024 * 1024;
|
||||
static int force_update;
|
||||
static int pack_compression_level = Z_DEFAULT_COMPRESSION;
|
||||
static int pack_compression_seen;
|
||||
@@ -1014,7 +1015,7 @@ static void cycle_packfile(void)
|
||||
|
||||
static size_t encode_header(
|
||||
enum object_type type,
|
||||
size_t size,
|
||||
uintmax_t size,
|
||||
unsigned char *hdr)
|
||||
{
|
||||
int n = 1;
|
||||
@@ -1170,6 +1171,118 @@ static int store_object(
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void truncate_pack(off_t to)
|
||||
{
|
||||
if (ftruncate(pack_data->pack_fd, to)
|
||||
|| lseek(pack_data->pack_fd, to, SEEK_SET) != to)
|
||||
die_errno("cannot truncate pack to skip duplicate");
|
||||
pack_size = to;
|
||||
}
|
||||
|
||||
static void stream_blob(uintmax_t len, unsigned char *sha1out, uintmax_t mark)
|
||||
{
|
||||
size_t in_sz = 64 * 1024, out_sz = 64 * 1024;
|
||||
unsigned char *in_buf = xmalloc(in_sz);
|
||||
unsigned char *out_buf = xmalloc(out_sz);
|
||||
struct object_entry *e;
|
||||
unsigned char sha1[20];
|
||||
unsigned long hdrlen;
|
||||
off_t offset;
|
||||
git_SHA_CTX c;
|
||||
z_stream s;
|
||||
int status = Z_OK;
|
||||
|
||||
/* Determine if we should auto-checkpoint. */
|
||||
if ((pack_size + 60 + len) > max_packsize
|
||||
|| (pack_size + 60 + len) < pack_size)
|
||||
cycle_packfile();
|
||||
|
||||
offset = pack_size;
|
||||
|
||||
hdrlen = snprintf((char *)out_buf, out_sz, "blob %" PRIuMAX, len) + 1;
|
||||
if (out_sz <= hdrlen)
|
||||
die("impossibly large object header");
|
||||
|
||||
git_SHA1_Init(&c);
|
||||
git_SHA1_Update(&c, out_buf, hdrlen);
|
||||
|
||||
memset(&s, 0, sizeof(s));
|
||||
deflateInit(&s, pack_compression_level);
|
||||
|
||||
hdrlen = encode_header(OBJ_BLOB, len, out_buf);
|
||||
if (out_sz <= hdrlen)
|
||||
die("impossibly large object header");
|
||||
|
||||
s.next_out = out_buf + hdrlen;
|
||||
s.avail_out = out_sz - hdrlen;
|
||||
|
||||
while (status != Z_STREAM_END) {
|
||||
if (0 < len && !s.avail_in) {
|
||||
size_t cnt = in_sz < len ? in_sz : (size_t)len;
|
||||
size_t n = fread(in_buf, 1, cnt, stdin);
|
||||
if (!n && feof(stdin))
|
||||
die("EOF in data (%" PRIuMAX " bytes remaining)", len);
|
||||
|
||||
git_SHA1_Update(&c, in_buf, n);
|
||||
s.next_in = in_buf;
|
||||
s.avail_in = n;
|
||||
len -= n;
|
||||
}
|
||||
|
||||
status = deflate(&s, len ? 0 : Z_FINISH);
|
||||
|
||||
if (!s.avail_out || status == Z_STREAM_END) {
|
||||
size_t n = s.next_out - out_buf;
|
||||
write_or_die(pack_data->pack_fd, out_buf, n);
|
||||
pack_size += n;
|
||||
s.next_out = out_buf;
|
||||
s.avail_out = out_sz;
|
||||
}
|
||||
|
||||
switch (status) {
|
||||
case Z_OK:
|
||||
case Z_BUF_ERROR:
|
||||
case Z_STREAM_END:
|
||||
continue;
|
||||
default:
|
||||
die("unexpected deflate failure: %d", status);
|
||||
}
|
||||
}
|
||||
deflateEnd(&s);
|
||||
git_SHA1_Final(sha1, &c);
|
||||
|
||||
if (sha1out)
|
||||
hashcpy(sha1out, sha1);
|
||||
|
||||
e = insert_object(sha1);
|
||||
|
||||
if (mark)
|
||||
insert_mark(mark, e);
|
||||
|
||||
if (e->offset) {
|
||||
duplicate_count_by_type[OBJ_BLOB]++;
|
||||
truncate_pack(offset);
|
||||
|
||||
} else if (find_sha1_pack(sha1, packed_git)) {
|
||||
e->type = OBJ_BLOB;
|
||||
e->pack_id = MAX_PACK_ID;
|
||||
e->offset = 1; /* just not zero! */
|
||||
duplicate_count_by_type[OBJ_BLOB]++;
|
||||
truncate_pack(offset);
|
||||
|
||||
} else {
|
||||
e->depth = 0;
|
||||
e->type = OBJ_BLOB;
|
||||
e->pack_id = pack_id;
|
||||
e->offset = offset;
|
||||
object_count++;
|
||||
object_count_by_type[OBJ_BLOB]++;
|
||||
}
|
||||
|
||||
free(in_buf);
|
||||
free(out_buf);
|
||||
}
|
||||
|
||||
/* All calls must be guarded by find_object() or find_mark() to
|
||||
* ensure the 'struct object_entry' passed was written by this
|
||||
* process instance. We unpack the entry by the offset, avoiding
|
||||
@@ -1757,7 +1870,7 @@ static void parse_mark(void)
|
||||
next_mark = 0;
|
||||
}
|
||||
|
||||
static void parse_data(struct strbuf *sb)
|
||||
static int parse_data(struct strbuf *sb, uintmax_t limit, uintmax_t *len_res)
|
||||
{
|
||||
strbuf_reset(sb);
|
||||
|
||||
@@ -1781,9 +1894,15 @@ static void parse_data(struct strbuf *sb)
|
||||
free(term);
|
||||
}
|
||||
else {
|
||||
size_t n = 0, length;
|
||||
uintmax_t len = strtoumax(command_buf.buf + 5, NULL, 10);
|
||||
size_t n = 0, length = (size_t)len;
|
||||
|
||||
length = strtoul(command_buf.buf + 5, NULL, 10);
|
||||
if (limit && limit < len) {
|
||||
*len_res = len;
|
||||
return 0;
|
||||
}
|
||||
if (length < len)
|
||||
die("data is too large to use in this context");
|
||||
|
||||
while (n < length) {
|
||||
size_t s = strbuf_fread(sb, length - n, stdin);
|
||||
@@ -1795,6 +1914,7 @@ static void parse_data(struct strbuf *sb)
|
||||
}
|
||||
|
||||
skip_optional_lf();
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int validate_raw_date(const char *src, char *result, int maxlen)
|
||||
@@ -1859,14 +1979,32 @@ static char *parse_ident(const char *buf)
|
||||
return ident;
|
||||
}
|
||||
|
||||
static void parse_new_blob(void)
|
||||
static void parse_and_store_blob(
|
||||
struct last_object *last,
|
||||
unsigned char *sha1out,
|
||||
uintmax_t mark)
|
||||
{
|
||||
static struct strbuf buf = STRBUF_INIT;
|
||||
uintmax_t len;
|
||||
|
||||
if (parse_data(&buf, big_file_threshold, &len))
|
||||
store_object(OBJ_BLOB, &buf, last, sha1out, mark);
|
||||
else {
|
||||
if (last) {
|
||||
strbuf_release(&last->data);
|
||||
last->offset = 0;
|
||||
last->depth = 0;
|
||||
}
|
||||
stream_blob(len, sha1out, mark);
|
||||
skip_optional_lf();
|
||||
}
|
||||
}
|
||||
|
||||
static void parse_new_blob(void)
|
||||
{
|
||||
read_next_command();
|
||||
parse_mark();
|
||||
parse_data(&buf);
|
||||
store_object(OBJ_BLOB, &buf, &last_blob, NULL, next_mark);
|
||||
parse_and_store_blob(&last_blob, NULL, next_mark);
|
||||
}
|
||||
|
||||
static void unload_one_branch(void)
|
||||
@@ -2080,15 +2218,12 @@ static void file_change_m(struct branch *b)
|
||||
* another repository.
|
||||
*/
|
||||
} else if (inline_data) {
|
||||
static struct strbuf buf = STRBUF_INIT;
|
||||
|
||||
if (p != uq.buf) {
|
||||
strbuf_addstr(&uq, p);
|
||||
p = uq.buf;
|
||||
}
|
||||
read_next_command();
|
||||
parse_data(&buf);
|
||||
store_object(OBJ_BLOB, &buf, &last_blob, sha1, 0);
|
||||
parse_and_store_blob(&last_blob, sha1, 0);
|
||||
} else if (oe) {
|
||||
if (oe->type != OBJ_BLOB)
|
||||
die("Not a blob (actually a %s): %s",
|
||||
@@ -2216,15 +2351,12 @@ static void note_change_n(struct branch *b, unsigned char old_fanout)
|
||||
die("Invalid ref name or SHA1 expression: %s", p);
|
||||
|
||||
if (inline_data) {
|
||||
static struct strbuf buf = STRBUF_INIT;
|
||||
|
||||
if (p != uq.buf) {
|
||||
strbuf_addstr(&uq, p);
|
||||
p = uq.buf;
|
||||
}
|
||||
read_next_command();
|
||||
parse_data(&buf);
|
||||
store_object(OBJ_BLOB, &buf, &last_blob, sha1, 0);
|
||||
parse_and_store_blob(&last_blob, sha1, 0);
|
||||
} else if (oe) {
|
||||
if (oe->type != OBJ_BLOB)
|
||||
die("Not a blob (actually a %s): %s",
|
||||
@@ -2401,7 +2533,7 @@ static void parse_new_commit(void)
|
||||
}
|
||||
if (!committer)
|
||||
die("Expected committer but didn't get one");
|
||||
parse_data(&msg);
|
||||
parse_data(&msg, 0, NULL);
|
||||
read_next_command();
|
||||
parse_from(b);
|
||||
merge_list = parse_merge(&merge_count);
|
||||
@@ -2528,7 +2660,7 @@ static void parse_new_tag(void)
|
||||
tagger = NULL;
|
||||
|
||||
/* tag payload/message */
|
||||
parse_data(&msg);
|
||||
parse_data(&msg, 0, NULL);
|
||||
|
||||
/* build the tag object */
|
||||
strbuf_reset(&new_data);
|
||||
@@ -2632,11 +2764,6 @@ static void option_date_format(const char *fmt)
|
||||
die("unknown --date-format argument %s", fmt);
|
||||
}
|
||||
|
||||
static void option_max_pack_size(const char *packsize)
|
||||
{
|
||||
max_packsize = strtoumax(packsize, NULL, 0) * 1024 * 1024;
|
||||
}
|
||||
|
||||
static void option_depth(const char *depth)
|
||||
{
|
||||
max_depth = strtoul(depth, NULL, 0);
|
||||
@@ -2666,7 +2793,22 @@ static void option_export_pack_edges(const char *edges)
|
||||
static int parse_one_option(const char *option)
|
||||
{
|
||||
if (!prefixcmp(option, "max-pack-size=")) {
|
||||
option_max_pack_size(option + 14);
|
||||
unsigned long v;
|
||||
if (!git_parse_ulong(option + 14, &v))
|
||||
return 0;
|
||||
if (v < 8192) {
|
||||
warning("max-pack-size is now in bytes, assuming --max-pack-size=%lum", v);
|
||||
v *= 1024 * 1024;
|
||||
} else if (v < 1024 * 1024) {
|
||||
warning("minimum max-pack-size is 1 MiB");
|
||||
v = 1024 * 1024;
|
||||
}
|
||||
max_packsize = v;
|
||||
} else if (!prefixcmp(option, "big-file-threshold=")) {
|
||||
unsigned long v;
|
||||
if (!git_parse_ulong(option + 19, &v))
|
||||
return 0;
|
||||
big_file_threshold = v;
|
||||
} else if (!prefixcmp(option, "depth=")) {
|
||||
option_depth(option + 6);
|
||||
} else if (!prefixcmp(option, "active-branches=")) {
|
||||
@@ -2749,11 +2891,15 @@ static int git_pack_config(const char *k, const char *v, void *cb)
|
||||
pack_compression_seen = 1;
|
||||
return 0;
|
||||
}
|
||||
if (!strcmp(k, "core.bigfilethreshold")) {
|
||||
long n = git_config_int(k, v);
|
||||
big_file_threshold = 0 < n ? n : 0;
|
||||
}
|
||||
return git_default_config(k, v, cb);
|
||||
}
|
||||
|
||||
static const char fast_import_usage[] =
|
||||
"git fast-import [--date-format=f] [--max-pack-size=n] [--depth=n] [--active-branches=n] [--export-marks=marks.file]";
|
||||
"git fast-import [--date-format=f] [--max-pack-size=n] [--big-file-threshold=n] [--depth=n] [--active-branches=n] [--export-marks=marks.file]";
|
||||
|
||||
static void parse_argv(void)
|
||||
{
|
||||
|
||||
@@ -25,7 +25,8 @@ p= pass it through git-apply
|
||||
patch-format= format the patch(es) are in
|
||||
reject pass it through git-apply
|
||||
resolvemsg= override error message when patch failure occurs
|
||||
r,resolved to be used after a patch failure
|
||||
continue continue applying patches after resolving a conflict
|
||||
r,resolved synonyms for --continue
|
||||
skip skip the current patch
|
||||
abort restore the original branch and abort the patching operation.
|
||||
committer-date-is-author-date lie about committer date
|
||||
@@ -318,7 +319,7 @@ do
|
||||
scissors=t ;;
|
||||
--no-scissors)
|
||||
scissors=f ;;
|
||||
-r|--resolved)
|
||||
-r|--resolved|--continue)
|
||||
resolved=t ;;
|
||||
--skip)
|
||||
skip=t ;;
|
||||
|
||||
@@ -207,7 +207,7 @@ t,)
|
||||
,*)
|
||||
;;
|
||||
*)
|
||||
die "Cannot set --prune-empty and --filter-commit at the same time"
|
||||
die "Cannot set --prune-empty and --commit-filter at the same time"
|
||||
esac
|
||||
|
||||
case "$force" in
|
||||
@@ -331,7 +331,7 @@ while read commit parents; do
|
||||
die "tree filter failed: $filter_tree"
|
||||
|
||||
(
|
||||
git diff-index -r --name-only $commit &&
|
||||
git diff-index -r --name-only --ignore-submodules $commit &&
|
||||
git ls-files --others
|
||||
) > "$tempdir"/tree-state || exit
|
||||
git update-index --add --replace --remove --stdin \
|
||||
|
||||
@@ -2059,7 +2059,7 @@ proc do_git_gui {} {
|
||||
# -- Always start git gui through whatever we were loaded with. This
|
||||
# lets us bypass using shell process on Windows systems.
|
||||
#
|
||||
set exe [_which git]
|
||||
set exe [list [_which git]]
|
||||
if {$exe eq {}} {
|
||||
error_popup [mc "Couldn't find git gui in PATH"]
|
||||
} else {
|
||||
@@ -3550,6 +3550,8 @@ bind . <$M1B-Key-s> do_signoff
|
||||
bind . <$M1B-Key-S> do_signoff
|
||||
bind . <$M1B-Key-t> do_add_selection
|
||||
bind . <$M1B-Key-T> do_add_selection
|
||||
bind . <$M1B-Key-j> do_revert_selection
|
||||
bind . <$M1B-Key-J> do_revert_selection
|
||||
bind . <$M1B-Key-i> do_add_all
|
||||
bind . <$M1B-Key-I> do_add_all
|
||||
bind . <$M1B-Key-minus> {show_less_context;break}
|
||||
|
||||
694
git-gui/po/fr.po
694
git-gui/po/fr.po
File diff suppressed because it is too large
Load Diff
630
git-gui/po/it.po
630
git-gui/po/it.po
File diff suppressed because it is too large
Load Diff
661
git-gui/po/ja.po
661
git-gui/po/ja.po
File diff suppressed because it is too large
Load Diff
622
git-gui/po/sv.po
622
git-gui/po/sv.po
File diff suppressed because it is too large
Load Diff
40
git-svn.perl
40
git-svn.perl
@@ -1656,6 +1656,7 @@ use File::Path qw/mkpath/;
|
||||
use File::Copy qw/copy/;
|
||||
use IPC::Open3;
|
||||
use Memoize; # core since 5.8.0, Jul 2002
|
||||
use Memoize::Storable;
|
||||
|
||||
my ($_gc_nr, $_gc_period);
|
||||
|
||||
@@ -3116,10 +3117,39 @@ sub has_no_changes {
|
||||
command_oneline("rev-parse", "$commit~1^{tree}"));
|
||||
}
|
||||
|
||||
BEGIN {
|
||||
memoize 'lookup_svn_merge';
|
||||
memoize 'check_cherry_pick';
|
||||
memoize 'has_no_changes';
|
||||
# The GIT_DIR environment variable is not always set until after the command
|
||||
# line arguments are processed, so we can't memoize in a BEGIN block.
|
||||
{
|
||||
my $memoized = 0;
|
||||
|
||||
sub memoize_svn_mergeinfo_functions {
|
||||
return if $memoized;
|
||||
$memoized = 1;
|
||||
|
||||
my $cache_path = "$ENV{GIT_DIR}/svn/.caches/";
|
||||
mkpath([$cache_path]) unless -d $cache_path;
|
||||
|
||||
tie my %lookup_svn_merge_cache => 'Memoize::Storable',
|
||||
"$cache_path/lookup_svn_merge.db", 'nstore';
|
||||
memoize 'lookup_svn_merge',
|
||||
SCALAR_CACHE => 'FAULT',
|
||||
LIST_CACHE => ['HASH' => \%lookup_svn_merge_cache],
|
||||
;
|
||||
|
||||
tie my %check_cherry_pick_cache => 'Memoize::Storable',
|
||||
"$cache_path/check_cherry_pick.db", 'nstore';
|
||||
memoize 'check_cherry_pick',
|
||||
SCALAR_CACHE => 'FAULT',
|
||||
LIST_CACHE => ['HASH' => \%check_cherry_pick_cache],
|
||||
;
|
||||
|
||||
tie my %has_no_changes_cache => 'Memoize::Storable',
|
||||
"$cache_path/has_no_changes.db", 'nstore';
|
||||
memoize 'has_no_changes',
|
||||
SCALAR_CACHE => ['HASH' => \%has_no_changes_cache],
|
||||
LIST_CACHE => 'FAULT',
|
||||
;
|
||||
}
|
||||
}
|
||||
|
||||
sub parents_exclude {
|
||||
@@ -3163,6 +3193,8 @@ sub find_extra_svn_parents {
|
||||
my ($self, $ed, $mergeinfo, $parents) = @_;
|
||||
# aha! svk:merge property changed...
|
||||
|
||||
memoize_svn_mergeinfo_functions();
|
||||
|
||||
# We first search for merged tips which are not in our
|
||||
# history. Then, we figure out which git revisions are in
|
||||
# that tip, but not this revision. If all of those revisions
|
||||
|
||||
2
git.c
2
git.c
@@ -317,7 +317,7 @@ static void handle_internal_command(int argc, const char **argv)
|
||||
{ "fsck-objects", cmd_fsck, RUN_SETUP },
|
||||
{ "gc", cmd_gc, RUN_SETUP },
|
||||
{ "get-tar-commit-id", cmd_get_tar_commit_id },
|
||||
{ "grep", cmd_grep, USE_PAGER },
|
||||
{ "grep", cmd_grep, RUN_SETUP | USE_PAGER },
|
||||
{ "hash-object", cmd_hash_object },
|
||||
{ "help", cmd_help },
|
||||
{ "index-pack", cmd_index_pack },
|
||||
|
||||
@@ -2783,7 +2783,7 @@ proc about {} {
|
||||
message $w.m -text [mc "
|
||||
Gitk - a commit viewer for git
|
||||
|
||||
Copyright \u00a9 2005-2009 Paul Mackerras
|
||||
Copyright © 2005-2009 Paul Mackerras
|
||||
|
||||
Use and redistribute under the terms of the GNU General Public License"] \
|
||||
-justify center -aspect 400 -border 2 -bg white -relief groove
|
||||
|
||||
129
gitweb/Makefile
Normal file
129
gitweb/Makefile
Normal file
@@ -0,0 +1,129 @@
|
||||
# The default target of this Makefile is...
|
||||
all::
|
||||
|
||||
# Define V=1 to have a more verbose compile.
|
||||
#
|
||||
# Define JSMIN to point to JavaScript minifier that functions as
|
||||
# a filter to have gitweb.js minified.
|
||||
#
|
||||
|
||||
prefix ?= $(HOME)
|
||||
bindir ?= $(prefix)/bin
|
||||
RM ?= rm -f
|
||||
|
||||
# JavaScript minifier invocation that can function as filter
|
||||
JSMIN ?=
|
||||
|
||||
# default configuration for gitweb
|
||||
GITWEB_CONFIG = gitweb_config.perl
|
||||
GITWEB_CONFIG_SYSTEM = /etc/gitweb.conf
|
||||
GITWEB_HOME_LINK_STR = projects
|
||||
GITWEB_SITENAME =
|
||||
GITWEB_PROJECTROOT = /pub/git
|
||||
GITWEB_PROJECT_MAXDEPTH = 2007
|
||||
GITWEB_EXPORT_OK =
|
||||
GITWEB_STRICT_EXPORT =
|
||||
GITWEB_BASE_URL =
|
||||
GITWEB_LIST =
|
||||
GITWEB_HOMETEXT = indextext.html
|
||||
GITWEB_CSS = gitweb.css
|
||||
GITWEB_LOGO = git-logo.png
|
||||
GITWEB_FAVICON = git-favicon.png
|
||||
ifdef JSMIN
|
||||
GITWEB_JS = gitweb.min.js
|
||||
else
|
||||
GITWEB_JS = gitweb.js
|
||||
endif
|
||||
GITWEB_SITE_HEADER =
|
||||
GITWEB_SITE_FOOTER =
|
||||
|
||||
# include user config
|
||||
-include ../config.mak.autogen
|
||||
-include ../config.mak
|
||||
|
||||
# determine version
|
||||
../GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
|
||||
$(QUIET_SUBDIR0)../ $(QUIET_SUBDIR1) GIT-VERSION-FILE
|
||||
|
||||
-include ../GIT-VERSION-FILE
|
||||
|
||||
### Build rules
|
||||
|
||||
SHELL_PATH ?= $(SHELL)
|
||||
PERL_PATH ?= /usr/bin/perl
|
||||
|
||||
# Shell quote;
|
||||
bindir_SQ = $(subst ','\'',$(bindir)) #'
|
||||
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH)) #'
|
||||
PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH)) #'
|
||||
|
||||
# Quiet generation (unless V=1)
|
||||
QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
|
||||
QUIET_SUBDIR1 =
|
||||
|
||||
ifneq ($(findstring $(MAKEFLAGS),w),w)
|
||||
PRINT_DIR = --no-print-directory
|
||||
else # "make -w"
|
||||
NO_SUBDIR = :
|
||||
endif
|
||||
|
||||
ifneq ($(findstring $(MAKEFLAGS),s),s)
|
||||
ifndef V
|
||||
QUIET = @
|
||||
QUIET_GEN = $(QUIET)echo ' ' GEN $@;
|
||||
QUIET_SUBDIR0 = +@subdir=
|
||||
QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
|
||||
$(MAKE) $(PRINT_DIR) -C $$subdir
|
||||
export V
|
||||
export QUIET
|
||||
export QUIET_GEN
|
||||
export QUIET_SUBDIR0
|
||||
export QUIET_SUBDIR1
|
||||
endif
|
||||
endif
|
||||
|
||||
all:: gitweb.cgi
|
||||
|
||||
ifdef JSMIN
|
||||
FILES=gitweb.cgi gitweb.min.js
|
||||
gitweb.cgi: gitweb.perl gitweb.min.js
|
||||
else # !JSMIN
|
||||
FILES=gitweb.cgi
|
||||
gitweb.cgi: gitweb.perl
|
||||
endif # JSMIN
|
||||
|
||||
gitweb.cgi:
|
||||
$(QUIET_GEN)$(RM) $@ $@+ && \
|
||||
sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
|
||||
-e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
|
||||
-e 's|++GIT_BINDIR++|$(bindir)|g' \
|
||||
-e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
|
||||
-e 's|++GITWEB_CONFIG_SYSTEM++|$(GITWEB_CONFIG_SYSTEM)|g' \
|
||||
-e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
|
||||
-e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
|
||||
-e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
|
||||
-e 's|"++GITWEB_PROJECT_MAXDEPTH++"|$(GITWEB_PROJECT_MAXDEPTH)|g' \
|
||||
-e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
|
||||
-e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
|
||||
-e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
|
||||
-e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
|
||||
-e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
|
||||
-e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
|
||||
-e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
|
||||
-e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
|
||||
-e 's|++GITWEB_JS++|$(GITWEB_JS)|g' \
|
||||
-e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
|
||||
-e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
|
||||
$< >$@+ && \
|
||||
chmod +x $@+ && \
|
||||
mv $@+ $@
|
||||
|
||||
ifdef JSMIN
|
||||
gitweb.min.js: gitweb.js
|
||||
$(QUIET_GEN)$(JSMIN) <$< >$@
|
||||
endif # JSMIN
|
||||
|
||||
clean:
|
||||
$(RM) $(FILES)
|
||||
|
||||
.PHONY: all clean .FORCE-GIT-VERSION-FILE
|
||||
@@ -174,7 +174,7 @@ not include variables usually directly set during build):
|
||||
Base URL for relative URLs in pages generated by gitweb,
|
||||
(e.g. $logo, $favicon, @stylesheets if they are relative URLs),
|
||||
needed and used only for URLs with nonempty PATH_INFO via
|
||||
<base href="$base_url>. Usually gitweb sets its value correctly,
|
||||
<base href="$base_url">. Usually gitweb sets its value correctly,
|
||||
and there is no need to set this variable, e.g. to $my_uri or "/".
|
||||
* $home_link
|
||||
Target of the home link on top of all pages (the first part of view
|
||||
@@ -228,6 +228,11 @@ not include variables usually directly set during build):
|
||||
repositories from launching cross-site scripting (XSS) attacks. Set this
|
||||
to true if you don't trust the content of your repositories. The default
|
||||
is false.
|
||||
* $maxload
|
||||
Used to set the maximum load that we will still respond to gitweb queries.
|
||||
If server load exceed this value then return "503 Service Unavaliable" error.
|
||||
Server load is taken to be 0 if gitweb cannot determine its value. Set it to
|
||||
undefined value to turn it off. The default is 300.
|
||||
|
||||
|
||||
Projects list file format
|
||||
|
||||
@@ -221,6 +221,12 @@ our %avatar_size = (
|
||||
'double' => 32
|
||||
);
|
||||
|
||||
# Used to set the maximum load that we will still respond to gitweb queries.
|
||||
# If server load exceed this value then return "503 server busy" error.
|
||||
# If gitweb cannot determined server load, it is taken to be 0.
|
||||
# Leave it undefined (or set to 'undef') to turn off load checking.
|
||||
our $maxload = 300;
|
||||
|
||||
# You define site-wide feature defaults here; override them with
|
||||
# $GITWEB_CONFIG as necessary.
|
||||
our %feature = (
|
||||
@@ -551,12 +557,38 @@ if (-e $GITWEB_CONFIG) {
|
||||
do $GITWEB_CONFIG_SYSTEM if -e $GITWEB_CONFIG_SYSTEM;
|
||||
}
|
||||
|
||||
# Get loadavg of system, to compare against $maxload.
|
||||
# Currently it requires '/proc/loadavg' present to get loadavg;
|
||||
# if it is not present it returns 0, which means no load checking.
|
||||
sub get_loadavg {
|
||||
if( -e '/proc/loadavg' ){
|
||||
open my $fd, '<', '/proc/loadavg'
|
||||
or return 0;
|
||||
my @load = split(/\s+/, scalar <$fd>);
|
||||
close $fd;
|
||||
|
||||
# The first three columns measure CPU and IO utilization of the last one,
|
||||
# five, and 10 minute periods. The fourth column shows the number of
|
||||
# currently running processes and the total number of processes in the m/n
|
||||
# format. The last column displays the last process ID used.
|
||||
return $load[0] || 0;
|
||||
}
|
||||
# additional checks for load average should go here for things that don't export
|
||||
# /proc/loadavg
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
# version of the core git binary
|
||||
our $git_version = qx("$GIT" --version) =~ m/git version (.*)$/ ? $1 : "unknown";
|
||||
$number_of_git_cmds++;
|
||||
|
||||
$projects_list ||= $projectroot;
|
||||
|
||||
if (defined $maxload && get_loadavg() > $maxload) {
|
||||
die_error(503, "The load average on the server is too high");
|
||||
}
|
||||
|
||||
# ======================================================================
|
||||
# input validation and dispatch
|
||||
|
||||
@@ -1298,7 +1330,6 @@ sub chop_str {
|
||||
$str =~ m/^(.*?)($begre)$/;
|
||||
my ($lead, $body) = ($1, $2);
|
||||
if (length($lead) > 4) {
|
||||
$body =~ s/^[^;]*;// if ($lead =~ m/&[^;]*$/);
|
||||
$lead = " ...";
|
||||
}
|
||||
return "$lead$body";
|
||||
@@ -1309,8 +1340,6 @@ sub chop_str {
|
||||
$str =~ m/^(.*?)($begre)$/;
|
||||
my ($mid, $right) = ($1, $2);
|
||||
if (length($mid) > 5) {
|
||||
$left =~ s/&[^;]*$//;
|
||||
$right =~ s/^[^;]*;// if ($mid =~ m/&[^;]*$/);
|
||||
$mid = " ... ";
|
||||
}
|
||||
return "$left$mid$right";
|
||||
@@ -1320,7 +1349,6 @@ sub chop_str {
|
||||
my $body = $1;
|
||||
my $tail = $2;
|
||||
if (length($tail) > 4) {
|
||||
$body =~ s/&[^;]*$//;
|
||||
$tail = "... ";
|
||||
}
|
||||
return "$body$tail";
|
||||
@@ -3222,7 +3250,7 @@ EOF
|
||||
print "</head>\n" .
|
||||
"<body>\n";
|
||||
|
||||
if (-f $site_header) {
|
||||
if (defined $site_header && -f $site_header) {
|
||||
insert_file($site_header);
|
||||
}
|
||||
|
||||
@@ -3323,12 +3351,13 @@ sub git_footer_html {
|
||||
print "</div>\n"; # class="page_footer"
|
||||
}
|
||||
|
||||
if (-f $site_footer) {
|
||||
if (defined $site_footer && -f $site_footer) {
|
||||
insert_file($site_footer);
|
||||
}
|
||||
|
||||
print qq!<script type="text/javascript" src="$javascript"></script>\n!;
|
||||
if ($action eq 'blame_incremental') {
|
||||
if (defined $action &&
|
||||
$action eq 'blame_incremental') {
|
||||
print qq!<script type="text/javascript">\n!.
|
||||
qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.
|
||||
qq! "!. href() .qq!");\n!.
|
||||
@@ -3354,22 +3383,33 @@ sub git_footer_html {
|
||||
# 500: The server isn't configured properly, or
|
||||
# an internal error occurred (e.g. failed assertions caused by bugs), or
|
||||
# an unknown error occurred (e.g. the git binary died unexpectedly).
|
||||
# 503: The server is currently unavailable (because it is overloaded,
|
||||
# or down for maintenance). Generally, this is a temporary state.
|
||||
sub die_error {
|
||||
my $status = shift || 500;
|
||||
my $error = shift || "Internal server error";
|
||||
my $extra = shift;
|
||||
|
||||
my %http_responses = (400 => '400 Bad Request',
|
||||
403 => '403 Forbidden',
|
||||
404 => '404 Not Found',
|
||||
500 => '500 Internal Server Error');
|
||||
my %http_responses = (
|
||||
400 => '400 Bad Request',
|
||||
403 => '403 Forbidden',
|
||||
404 => '404 Not Found',
|
||||
500 => '500 Internal Server Error',
|
||||
503 => '503 Service Unavailable',
|
||||
);
|
||||
git_header_html($http_responses{$status});
|
||||
print <<EOF;
|
||||
<div class="page_body">
|
||||
<br /><br />
|
||||
$status - $error
|
||||
<br />
|
||||
</div>
|
||||
EOF
|
||||
if (defined $extra) {
|
||||
print "<hr />\n" .
|
||||
"$extra\n";
|
||||
}
|
||||
print "</div>\n";
|
||||
|
||||
git_footer_html();
|
||||
exit;
|
||||
}
|
||||
@@ -3471,14 +3511,21 @@ sub git_print_header_div {
|
||||
}
|
||||
|
||||
sub print_local_time {
|
||||
print format_local_time(@_);
|
||||
}
|
||||
|
||||
sub format_local_time {
|
||||
my $localtime = '';
|
||||
my %date = @_;
|
||||
if ($date{'hour_local'} < 6) {
|
||||
printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
|
||||
$localtime .= sprintf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
|
||||
$date{'hour_local'}, $date{'minute_local'}, $date{'tz_local'});
|
||||
} else {
|
||||
printf(" (%02d:%02d %s)",
|
||||
$localtime .= sprintf(" (%02d:%02d %s)",
|
||||
$date{'hour_local'}, $date{'minute_local'}, $date{'tz_local'});
|
||||
}
|
||||
|
||||
return $localtime;
|
||||
}
|
||||
|
||||
# Outputs the author name and date in long form
|
||||
@@ -4302,17 +4349,24 @@ sub fill_project_list_info {
|
||||
# print 'sort by' <th> element, generating 'sort by $name' replay link
|
||||
# if that order is not selected
|
||||
sub print_sort_th {
|
||||
print format_sort_th(@_);
|
||||
}
|
||||
|
||||
sub format_sort_th {
|
||||
my ($name, $order, $header) = @_;
|
||||
my $sort_th = "";
|
||||
$header ||= ucfirst($name);
|
||||
|
||||
if ($order eq $name) {
|
||||
print "<th>$header</th>\n";
|
||||
$sort_th .= "<th>$header</th>\n";
|
||||
} else {
|
||||
print "<th>" .
|
||||
$cgi->a({-href => href(-replay=>1, order=>$name),
|
||||
-class => "header"}, $header) .
|
||||
"</th>\n";
|
||||
$sort_th .= "<th>" .
|
||||
$cgi->a({-href => href(-replay=>1, order=>$name),
|
||||
-class => "header"}, $header) .
|
||||
"</th>\n";
|
||||
}
|
||||
|
||||
return $sort_th;
|
||||
}
|
||||
|
||||
sub git_project_list_body {
|
||||
@@ -4743,7 +4797,7 @@ sub git_project_list {
|
||||
}
|
||||
|
||||
git_header_html();
|
||||
if (-f $home_text) {
|
||||
if (defined $home_text && -f $home_text) {
|
||||
print "<div class=\"index_include\">\n";
|
||||
insert_file($home_text);
|
||||
print "</div>\n";
|
||||
|
||||
5
grep.c
5
grep.c
@@ -57,11 +57,8 @@ static void compile_regexp(struct grep_pat *p, struct grep_opt *opt)
|
||||
|
||||
p->word_regexp = opt->word_regexp;
|
||||
p->ignore_case = opt->ignore_case;
|
||||
p->fixed = opt->fixed;
|
||||
|
||||
if (opt->fixed)
|
||||
p->fixed = 1;
|
||||
if (opt->regflags & REG_ICASE)
|
||||
p->fixed = 0;
|
||||
if (p->fixed)
|
||||
return;
|
||||
|
||||
|
||||
15
imap-send.c
15
imap-send.c
@@ -1331,11 +1331,16 @@ static int git_imap_config(const char *key, const char *val, void *cb)
|
||||
if (strncmp(key, imap_key, sizeof imap_key - 1))
|
||||
return 0;
|
||||
|
||||
if (!val)
|
||||
return config_error_nonbool(key);
|
||||
|
||||
key += sizeof imap_key - 1;
|
||||
|
||||
/* check booleans first, and barf on others */
|
||||
if (!strcmp("sslverify", key))
|
||||
server.ssl_verify = git_config_bool(key, val);
|
||||
else if (!strcmp("preformattedhtml", key))
|
||||
server.use_html = git_config_bool(key, val);
|
||||
else if (!val)
|
||||
return config_error_nonbool(key);
|
||||
|
||||
if (!strcmp("folder", key)) {
|
||||
imap_folder = xstrdup(val);
|
||||
} else if (!strcmp("host", key)) {
|
||||
@@ -1356,10 +1361,6 @@ static int git_imap_config(const char *key, const char *val, void *cb)
|
||||
server.port = git_config_int(key, val);
|
||||
else if (!strcmp("tunnel", key))
|
||||
server.tunnel = xstrdup(val);
|
||||
else if (!strcmp("sslverify", key))
|
||||
server.ssl_verify = git_config_bool(key, val);
|
||||
else if (!strcmp("preformattedHTML", key))
|
||||
server.use_html = git_config_bool(key, val);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
4
quote.c
4
quote.c
@@ -213,7 +213,7 @@ static size_t quote_c_style_counted(const char *name, ssize_t maxlen,
|
||||
int ch;
|
||||
|
||||
len = next_quote_pos(p, maxlen);
|
||||
if (len == maxlen || !p[len])
|
||||
if (len == maxlen || (maxlen < 0 && !p[len]))
|
||||
break;
|
||||
|
||||
if (!no_dq && p == name)
|
||||
@@ -223,6 +223,8 @@ static size_t quote_c_style_counted(const char *name, ssize_t maxlen,
|
||||
EMIT('\\');
|
||||
p += len;
|
||||
ch = (unsigned char)*p++;
|
||||
if (maxlen >= 0)
|
||||
maxlen -= len + 1;
|
||||
if (sq_lookup[ch] >= ' ') {
|
||||
EMIT(sq_lookup[ch]);
|
||||
} else {
|
||||
|
||||
@@ -26,7 +26,7 @@ static struct cache_entry *refresh_cache_entry(struct cache_entry *ce, int reall
|
||||
|
||||
#define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) )
|
||||
#define CACHE_EXT_TREE 0x54524545 /* "TREE" */
|
||||
#define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUN" */
|
||||
#define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUC" */
|
||||
|
||||
struct index_state the_index;
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ void resolve_undo_write(struct strbuf *sb, struct string_list *resolve_undo)
|
||||
for_each_string_list(write_one, resolve_undo, sb);
|
||||
}
|
||||
|
||||
struct string_list *resolve_undo_read(void *data, unsigned long size)
|
||||
struct string_list *resolve_undo_read(const char *data, unsigned long size)
|
||||
{
|
||||
struct string_list *resolve_undo;
|
||||
size_t len;
|
||||
@@ -93,7 +93,7 @@ struct string_list *resolve_undo_read(void *data, unsigned long size)
|
||||
continue;
|
||||
if (size < 20)
|
||||
goto error;
|
||||
hashcpy(ui->sha1[i], data);
|
||||
hashcpy(ui->sha1[i], (const unsigned char *)data);
|
||||
size -= 20;
|
||||
data += 20;
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ struct resolve_undo_info {
|
||||
|
||||
extern void record_resolve_undo(struct index_state *, struct cache_entry *);
|
||||
extern void resolve_undo_write(struct strbuf *, struct string_list *);
|
||||
extern struct string_list *resolve_undo_read(void *, unsigned long);
|
||||
extern struct string_list *resolve_undo_read(const char *, unsigned long);
|
||||
extern void resolve_undo_clear_index(struct index_state *);
|
||||
extern int unmerge_index_entry_at(struct index_state *, int);
|
||||
extern void unmerge_index(struct index_state *, const char **);
|
||||
|
||||
@@ -25,6 +25,7 @@ our \$favicon = 'file:///$TEST_DIRECTORY/../gitweb/git-favicon.png';
|
||||
our \$projects_list = '';
|
||||
our \$export_ok = '';
|
||||
our \$strict_export = '';
|
||||
our \$maxload = undef;
|
||||
|
||||
EOF
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ for_each_name () {
|
||||
for name in \
|
||||
Name "Name and a${LF}LF" "Name and an${HT}HT" "Name${DQ}" \
|
||||
"$FN$HT$GN" "$FN$LF$GN" "$FN $GN" "$FN$GN" "$FN$DQ$GN" \
|
||||
"With SP in it"
|
||||
"With SP in it" "$FN/file"
|
||||
do
|
||||
eval "$1"
|
||||
done
|
||||
@@ -33,6 +33,7 @@ for_each_name () {
|
||||
|
||||
test_expect_success setup '
|
||||
|
||||
mkdir "$FN" &&
|
||||
for_each_name "echo initial >\"\$name\""
|
||||
git add . &&
|
||||
git commit -q -m Initial &&
|
||||
@@ -54,6 +55,7 @@ With SP in it
|
||||
"\346\277\261\351\207\216\n\347\264\224"
|
||||
"\346\277\261\351\207\216 \347\264\224"
|
||||
"\346\277\261\351\207\216\"\347\264\224"
|
||||
"\346\277\261\351\207\216/file"
|
||||
"\346\277\261\351\207\216\347\264\224"
|
||||
EOF
|
||||
|
||||
@@ -67,6 +69,7 @@ With SP in it
|
||||
"濱野\n純"
|
||||
濱野 純
|
||||
"濱野\"純"
|
||||
濱野/file
|
||||
濱野純
|
||||
EOF
|
||||
|
||||
@@ -97,6 +100,13 @@ test_expect_success 'check fully quoted output from diff-tree' '
|
||||
|
||||
'
|
||||
|
||||
test_expect_success 'check fully quoted output from ls-tree' '
|
||||
|
||||
git ls-tree --name-only -r HEAD >current &&
|
||||
test_cmp expect.quoted current
|
||||
|
||||
'
|
||||
|
||||
test_expect_success 'setting core.quotepath' '
|
||||
|
||||
git config --bool core.quotepath false
|
||||
@@ -130,4 +140,11 @@ test_expect_success 'check fully quoted output from diff-tree' '
|
||||
|
||||
'
|
||||
|
||||
test_expect_success 'check fully quoted output from ls-tree' '
|
||||
|
||||
git ls-tree --name-only -r HEAD >current &&
|
||||
test_cmp expect.raw current
|
||||
|
||||
'
|
||||
|
||||
test_done
|
||||
|
||||
@@ -189,6 +189,16 @@ test_expect_success 'git archive --format=zip with --output' \
|
||||
'git archive --format=zip --output=d2.zip HEAD &&
|
||||
test_cmp d.zip d2.zip'
|
||||
|
||||
test_expect_success 'git archive with --output, inferring format' '
|
||||
git archive --output=d3.zip HEAD &&
|
||||
test_cmp d.zip d3.zip
|
||||
'
|
||||
|
||||
test_expect_success 'git archive with --output, override inferred format' '
|
||||
git archive --format=tar --output=d4.zip HEAD &&
|
||||
test_cmp b.tar d4.zip
|
||||
'
|
||||
|
||||
$UNZIP -v >/dev/null 2>&1
|
||||
if [ $? -eq 127 ]; then
|
||||
say "Skipping ZIP tests, because unzip was not found"
|
||||
|
||||
@@ -16,7 +16,9 @@ test_expect_success \
|
||||
perl -e "print \"a\" x 4096;" > a &&
|
||||
perl -e "print \"b\" x 4096;" > b &&
|
||||
perl -e "print \"c\" x 4096;" > c &&
|
||||
git update-index --add a b c &&
|
||||
test-genrandom "seed a" 2097152 > a_big &&
|
||||
test-genrandom "seed b" 2097152 > b_big &&
|
||||
git update-index --add a a_big b b_big c &&
|
||||
cat c >d && echo foo >>d && git update-index --add d &&
|
||||
tree=`git write-tree` &&
|
||||
commit=`git commit-tree $tree </dev/null` && {
|
||||
@@ -280,26 +282,8 @@ test_expect_success \
|
||||
|
||||
:'
|
||||
|
||||
test_expect_success \
|
||||
'fake a SHA1 hash collision' \
|
||||
'test -f .git/objects/c8/2de19312b6c3695c0c18f70709a6c535682a67 &&
|
||||
cp -f .git/objects/9d/235ed07cd19811a6ceb342de82f190e49c9f68 \
|
||||
.git/objects/c8/2de19312b6c3695c0c18f70709a6c535682a67'
|
||||
|
||||
test_expect_success \
|
||||
'make sure index-pack detects the SHA1 collision' \
|
||||
'test_must_fail git index-pack -o bad.idx test-3.pack 2>msg &&
|
||||
grep "SHA1 COLLISION FOUND" msg'
|
||||
|
||||
test_expect_success \
|
||||
'honor pack.packSizeLimit' \
|
||||
'git config pack.packSizeLimit 200 &&
|
||||
packname_4=$(git pack-objects test-4 <obj-list) &&
|
||||
test 3 = $(ls test-4-*.pack | wc -l)'
|
||||
|
||||
test_expect_success 'unpacking with --strict' '
|
||||
|
||||
git config --unset pack.packsizelimit &&
|
||||
for j in a b c d e f g
|
||||
do
|
||||
for i in 0 1 2 3 4 5 6 7 8 9
|
||||
@@ -392,10 +376,42 @@ test_expect_success 'index-pack with --strict' '
|
||||
)
|
||||
'
|
||||
|
||||
test_expect_success 'tolerate absurdly small packsizelimit' '
|
||||
git config pack.packSizeLimit 2 &&
|
||||
packname_9=$(git pack-objects test-9 <obj-list) &&
|
||||
test $(wc -l <obj-list) = $(ls test-9-*.pack | wc -l)
|
||||
test_expect_success 'honor pack.packSizeLimit' '
|
||||
git config pack.packSizeLimit 3m &&
|
||||
packname_10=$(git pack-objects test-10 <obj-list) &&
|
||||
test 2 = $(ls test-10-*.pack | wc -l)
|
||||
'
|
||||
|
||||
test_expect_success 'verify resulting packs' '
|
||||
git verify-pack test-10-*.pack
|
||||
'
|
||||
|
||||
test_expect_success 'tolerate packsizelimit smaller than biggest object' '
|
||||
git config pack.packSizeLimit 1 &&
|
||||
packname_11=$(git pack-objects test-11 <obj-list) &&
|
||||
test 5 = $(ls test-11-*.pack | wc -l)
|
||||
'
|
||||
|
||||
test_expect_success 'verify resulting packs' '
|
||||
git verify-pack test-11-*.pack
|
||||
'
|
||||
|
||||
#
|
||||
# WARNING!
|
||||
#
|
||||
# The following test is destructive. Please keep the next
|
||||
# two tests at the end of this file.
|
||||
#
|
||||
|
||||
test_expect_success \
|
||||
'fake a SHA1 hash collision' \
|
||||
'test -f .git/objects/c8/2de19312b6c3695c0c18f70709a6c535682a67 &&
|
||||
cp -f .git/objects/9d/235ed07cd19811a6ceb342de82f190e49c9f68 \
|
||||
.git/objects/c8/2de19312b6c3695c0c18f70709a6c535682a67'
|
||||
|
||||
test_expect_success \
|
||||
'make sure index-pack detects the SHA1 collision' \
|
||||
'test_must_fail git index-pack -o bad.idx test-3.pack 2>msg &&
|
||||
grep "SHA1 COLLISION FOUND" msg'
|
||||
|
||||
test_done
|
||||
|
||||
@@ -31,7 +31,7 @@ test_expect_success 'setup' '
|
||||
echo "data 5" &&
|
||||
echo ">2gb" &&
|
||||
cat commit) |
|
||||
git fast-import &&
|
||||
git fast-import --big-file-threshold=2 &&
|
||||
test ! -f exit-status
|
||||
|
||||
'
|
||||
|
||||
@@ -434,56 +434,4 @@ test_expect_success 'grep -Fi' '
|
||||
test_cmp expected actual
|
||||
'
|
||||
|
||||
test_expect_success 'outside of git repository' '
|
||||
rm -fr non &&
|
||||
mkdir -p non/git/sub &&
|
||||
echo hello >non/git/file1 &&
|
||||
echo world >non/git/sub/file2 &&
|
||||
echo ".*o*" >non/git/.gitignore &&
|
||||
{
|
||||
echo file1:hello &&
|
||||
echo sub/file2:world
|
||||
} >non/expect.full &&
|
||||
echo file2:world >non/expect.sub
|
||||
(
|
||||
GIT_CEILING_DIRECTORIES="$(pwd)/non/git" &&
|
||||
export GIT_CEILING_DIRECTORIES &&
|
||||
cd non/git &&
|
||||
test_must_fail git grep o &&
|
||||
git grep --no-index o >../actual.full &&
|
||||
test_cmp ../expect.full ../actual.full
|
||||
cd sub &&
|
||||
test_must_fail git grep o &&
|
||||
git grep --no-index o >../../actual.sub &&
|
||||
test_cmp ../../expect.sub ../../actual.sub
|
||||
)
|
||||
'
|
||||
|
||||
test_expect_success 'inside git repository but with --no-index' '
|
||||
rm -fr is &&
|
||||
mkdir -p is/git/sub &&
|
||||
echo hello >is/git/file1 &&
|
||||
echo world >is/git/sub/file2 &&
|
||||
echo ".*o*" >is/git/.gitignore &&
|
||||
{
|
||||
echo file1:hello &&
|
||||
echo sub/file2:world
|
||||
} >is/expect.full &&
|
||||
: >is/expect.empty &&
|
||||
echo file2:world >is/expect.sub
|
||||
(
|
||||
cd is/git &&
|
||||
git init &&
|
||||
test_must_fail git grep o >../actual.full &&
|
||||
test_cmp ../expect.empty ../actual.full &&
|
||||
git grep --no-index o >../actual.full &&
|
||||
test_cmp ../expect.full ../actual.full &&
|
||||
cd sub &&
|
||||
test_must_fail git grep o >../../actual.sub &&
|
||||
test_cmp ../../expect.empty ../../actual.sub &&
|
||||
git grep --no-index o >../../actual.sub &&
|
||||
test_cmp ../../expect.sub ../../actual.sub
|
||||
)
|
||||
'
|
||||
|
||||
test_done
|
||||
|
||||
@@ -306,4 +306,43 @@ test_expect_success '--remap-to-ancestor with filename filters' '
|
||||
test $orig_invariant = $(git rev-parse invariant)
|
||||
'
|
||||
|
||||
test_expect_success 'setup submodule' '
|
||||
rm -fr ?* .git &&
|
||||
git init &&
|
||||
test_commit file &&
|
||||
mkdir submod &&
|
||||
submodurl="$PWD/submod" &&
|
||||
( cd submod &&
|
||||
git init &&
|
||||
test_commit file-in-submod ) &&
|
||||
git submodule add "$submodurl" &&
|
||||
git commit -m "added submodule" &&
|
||||
test_commit add-file &&
|
||||
( cd submod && test_commit add-in-submodule ) &&
|
||||
git add submod &&
|
||||
git commit -m "changed submodule" &&
|
||||
git branch original HEAD
|
||||
'
|
||||
|
||||
orig_head=`git show-ref --hash --head HEAD`
|
||||
|
||||
test_expect_success 'rewrite submodule with another content' '
|
||||
git filter-branch --tree-filter "test -d submod && {
|
||||
rm -rf submod &&
|
||||
git rm -rf --quiet submod &&
|
||||
mkdir submod &&
|
||||
: > submod/file
|
||||
} || :" HEAD &&
|
||||
test $orig_head != `git show-ref --hash --head HEAD`
|
||||
'
|
||||
|
||||
test_expect_success 'replace submodule revision' '
|
||||
git reset --hard original &&
|
||||
git filter-branch -f --tree-filter \
|
||||
"if git ls-files --error-unmatch -- submod > /dev/null 2>&1
|
||||
then git update-index --cacheinfo 160000 0123456789012345678901234567890123456789 submod
|
||||
fi" HEAD &&
|
||||
test $orig_head != `git show-ref --hash --head HEAD`
|
||||
'
|
||||
|
||||
test_done
|
||||
|
||||
@@ -157,4 +157,14 @@ EOF
|
||||
git --no-pager blame $COMMIT -- uno >/dev/null
|
||||
'
|
||||
|
||||
test_expect_success 'blame -L with invalid start' '
|
||||
test_must_fail git blame -L5 tres 2>errors &&
|
||||
grep "has only 2 lines" errors
|
||||
'
|
||||
|
||||
test_expect_success 'blame -L with invalid end' '
|
||||
test_must_fail git blame -L1,5 tres 2>errors &&
|
||||
grep "has only 2 lines" errors
|
||||
'
|
||||
|
||||
test_done
|
||||
|
||||
@@ -1536,4 +1536,50 @@ test_expect_success 'R: ignore non-git options' '
|
||||
git fast-import <input
|
||||
'
|
||||
|
||||
##
|
||||
## R: very large blobs
|
||||
##
|
||||
blobsize=$((2*1024*1024 + 53))
|
||||
test-genrandom bar $blobsize >expect
|
||||
cat >input <<INPUT_END
|
||||
commit refs/heads/big-file
|
||||
committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
|
||||
data <<COMMIT
|
||||
R - big file
|
||||
COMMIT
|
||||
|
||||
M 644 inline big1
|
||||
data $blobsize
|
||||
INPUT_END
|
||||
cat expect >>input
|
||||
cat >>input <<INPUT_END
|
||||
M 644 inline big2
|
||||
data $blobsize
|
||||
INPUT_END
|
||||
cat expect >>input
|
||||
echo >>input
|
||||
|
||||
test_expect_success \
|
||||
'R: blob bigger than threshold' \
|
||||
'test_create_repo R &&
|
||||
git --git-dir=R/.git fast-import --big-file-threshold=1 <input'
|
||||
test_expect_success \
|
||||
'R: verify created pack' \
|
||||
': >verify &&
|
||||
for p in R/.git/objects/pack/*.pack;
|
||||
do
|
||||
git verify-pack -v $p >>verify || exit;
|
||||
done'
|
||||
test_expect_success \
|
||||
'R: verify written objects' \
|
||||
'git --git-dir=R/.git cat-file blob big-file:big1 >actual &&
|
||||
test_cmp expect actual &&
|
||||
a=$(git --git-dir=R/.git rev-parse big-file:big1) &&
|
||||
b=$(git --git-dir=R/.git rev-parse big-file:big2) &&
|
||||
test $a = $b'
|
||||
test_expect_success \
|
||||
'R: blob appears only once' \
|
||||
'n=$(grep $a verify | wc -l) &&
|
||||
test 1 = $n'
|
||||
|
||||
test_done
|
||||
|
||||
@@ -33,7 +33,6 @@ test_expect_success \
|
||||
grep "403 - Snapshot format not allowed" gitweb.output &&
|
||||
gitweb_run "p=.git;a=snapshot;h=HEAD;sf=zip" &&
|
||||
grep "403 - Unsupported snapshot format" gitweb.output'
|
||||
test_debug 'cat gitweb.output'
|
||||
|
||||
|
||||
cat >>gitweb_config.perl <<\EOF
|
||||
@@ -50,7 +49,6 @@ test_expect_success \
|
||||
grep "403 - Snapshot format not allowed" gitweb.output &&
|
||||
gitweb_run "p=.git;a=snapshot;h=HEAD;sf=zip" &&
|
||||
grep "Status: 200 OK" gitweb.output'
|
||||
test_debug 'cat gitweb.output'
|
||||
|
||||
|
||||
cat >>gitweb_config.perl <<\EOF
|
||||
@@ -72,7 +70,7 @@ test_expect_success \
|
||||
'snapshots: tgz explicitly enabled' \
|
||||
'gitweb_run "p=.git;a=snapshot;h=HEAD;sf=tgz" &&
|
||||
grep "Status: 200 OK" gitweb.output'
|
||||
test_debug 'cat gitweb.output'
|
||||
test_debug 'cat gitweb.headers'
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
@@ -82,7 +80,7 @@ test_expect_success 'snapshots: good tree-ish id' '
|
||||
gitweb_run "p=.git;a=snapshot;h=master;sf=tgz" &&
|
||||
grep "Status: 200 OK" gitweb.output
|
||||
'
|
||||
test_debug 'cat gitweb.output'
|
||||
test_debug 'cat gitweb.headers'
|
||||
|
||||
test_expect_success 'snapshots: bad tree-ish id' '
|
||||
gitweb_run "p=.git;a=snapshot;h=frizzumFrazzum;sf=tgz" &&
|
||||
@@ -105,7 +103,7 @@ test_expect_success 'snapshots: good object id' '
|
||||
gitweb_run "p=.git;a=snapshot;h=$ID;sf=tgz" &&
|
||||
grep "Status: 200 OK" gitweb.output
|
||||
'
|
||||
test_debug 'cat gitweb.output'
|
||||
test_debug 'cat gitweb.headers'
|
||||
|
||||
test_expect_success 'snapshots: bad object id' '
|
||||
gitweb_run "p=.git;a=snapshot;h=abcdef01234;sf=tgz" &&
|
||||
@@ -114,4 +112,26 @@ test_expect_success 'snapshots: bad object id' '
|
||||
test_debug 'cat gitweb.output'
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# load checking
|
||||
|
||||
# always hit the load limit
|
||||
cat >>gitweb_config.perl <<\EOF
|
||||
our $maxload = -1;
|
||||
EOF
|
||||
|
||||
test_expect_success 'load checking: load too high (default action)' '
|
||||
gitweb_run "p=.git" &&
|
||||
grep "Status: 503 Service Unavailable" gitweb.headers &&
|
||||
grep "503 - The load average on the server is too high" gitweb.body
|
||||
'
|
||||
test_debug 'cat gitweb.log' # just in case
|
||||
test_debug 'cat gitweb.headers'
|
||||
|
||||
# turn off load checking
|
||||
cat >>gitweb_config.perl <<\EOF
|
||||
our $maxload = undef;
|
||||
EOF
|
||||
|
||||
|
||||
test_done
|
||||
|
||||
Reference in New Issue
Block a user