OBS User unknown 2009-04-20 14:27:38 +00:00 committed by Git OBS Bridge
parent b6e5703b08
commit 4e65fc4ed8
4 changed files with 54 additions and 5 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c61eaf1c775b56b1421d1f53e4cd4f1eb9a0fd874d653f4810db126cf14651ba
size 2017249

3
git-1.6.2.4.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7f33a25798452a637740a65591608777e876cc6774162c50ace3822c0532a10f
size 2019308

View File

@ -1,3 +1,29 @@
-------------------------------------------------------------------
Mon Apr 20 12:44:42 CEST 2009 - tiwai@suse.de
- updated to 1.6.2.4:
* The configuration parser had a buffer overflow while parsing
an overlong value.
* pruning reflog entries that are unreachable from the tip of
the ref during "git reflog prune" (hence "git gc") was very
inefficient.
* "git-add -p" lacked a way to say "q"uit to refuse staging any
hunks for the remaining paths. You had to say "d" and then ^C.
* "git-checkout <tree-ish> <submodule>" did not update the index
entry at the named path; it now does.
* "git-fast-export" choked when seeing a tag that does not point
at commit.
* "git init" segfaulted when given an overlong template location
via the --template= option.
* "git-ls-tree" and "git-diff-tree" used a pathspec correctly
when deciding to descend into a subdirectory but they did not
match the individual paths correctly. This caused pathspecs
"abc/d ab" to match "abc/0" ("abc/d" made them decide to
descend into the directory "abc/", and then "ab" incorrectly
matched "abc/0" when it shouldn't).
* "git-merge-recursive" was broken when a submodule entry was
involved in a criss-cross merge situation.
-------------------------------------------------------------------
Thu Apr 16 11:02:04 CEST 2009 - tiwai@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package git (Version 1.6.2.3)
# spec file for package git (Version 1.6.2.4)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -36,7 +36,7 @@ BuildRequires: libopenssl-devel
%endif
BuildRequires: sgml-skel
BuildRequires: xmlto
Version: 1.6.2.3
Version: 1.6.2.4
Release: 1
Summary: Fast, scalable, distributed revision control system
License: GPL v2 or later
@ -420,6 +420,29 @@ fi
/etc/bash_completion.d/git.sh
%changelog
* Mon Apr 20 2009 tiwai@suse.de
- updated to 1.6.2.4:
* The configuration parser had a buffer overflow while parsing
an overlong value.
* pruning reflog entries that are unreachable from the tip of
the ref during "git reflog prune" (hence "git gc") was very
inefficient.
* "git-add -p" lacked a way to say "q"uit to refuse staging any
hunks for the remaining paths. You had to say "d" and then ^C.
* "git-checkout <tree-ish> <submodule>" did not update the index
entry at the named path; it now does.
* "git-fast-export" choked when seeing a tag that does not point
at commit.
* "git init" segfaulted when given an overlong template location
via the --template= option.
* "git-ls-tree" and "git-diff-tree" used a pathspec correctly
when deciding to descend into a subdirectory but they did not
match the individual paths correctly. This caused pathspecs
"abc/d ab" to match "abc/0" ("abc/d" made them decide to
descend into the directory "abc/", and then "ab" incorrectly
matched "abc/0" when it shouldn't).
* "git-merge-recursive" was broken when a submodule entry was
involved in a criss-cross merge situation.
* Thu Apr 16 2009 tiwai@suse.de
- updated to 1.6.2.2:
* A longstanding confusing description of what --pickaxe option