From 4e65fc4ed8312608b84c528e57044db6fac5aa834128eb85bd053141a5d57e01 Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Mon, 20 Apr 2009 14:27:38 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=29 --- git-1.6.2.3.tar.bz2 | 3 --- git-1.6.2.4.tar.bz2 | 3 +++ git.changes | 26 ++++++++++++++++++++++++++ git.spec | 27 +++++++++++++++++++++++++-- 4 files changed, 54 insertions(+), 5 deletions(-) delete mode 100644 git-1.6.2.3.tar.bz2 create mode 100644 git-1.6.2.4.tar.bz2 diff --git a/git-1.6.2.3.tar.bz2 b/git-1.6.2.3.tar.bz2 deleted file mode 100644 index f841e9a..0000000 --- a/git-1.6.2.3.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c61eaf1c775b56b1421d1f53e4cd4f1eb9a0fd874d653f4810db126cf14651ba -size 2017249 diff --git a/git-1.6.2.4.tar.bz2 b/git-1.6.2.4.tar.bz2 new file mode 100644 index 0000000..f82fd5f --- /dev/null +++ b/git-1.6.2.4.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f33a25798452a637740a65591608777e876cc6774162c50ace3822c0532a10f +size 2019308 diff --git a/git.changes b/git.changes index 91c3849..e90a9ee 100644 --- a/git.changes +++ b/git.changes @@ -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 " 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 diff --git a/git.spec b/git.spec index 5abe70e..73e37ec 100644 --- a/git.spec +++ b/git.spec @@ -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 " 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