Accepting request 35104 from devel:tools:scm

Copy from devel:tools:scm/git based on submit request 35104 from user tiwai

OBS-URL: https://build.opensuse.org/request/show/35104
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=40
This commit is contained in:
OBS User autobuild
2010-03-19 08:38:33 +00:00
committed by Git OBS Bridge
parent ab92393417
commit 8195db7101
5 changed files with 105 additions and 7 deletions

View File

@@ -1,3 +1,66 @@
-------------------------------------------------------------------
Mon Mar 8 08:40:02 CET 2010 - tiwai@suse.de
- updated to git 1.7.0.2:
http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.0.2.txt
-------------------------------------------------------------------
Mon Mar 1 12:47:24 CET 2010 - tiwai@suse.de
- updated to git 1.7.0.1; just a minor update
http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.0.1.txt
-------------------------------------------------------------------
Thu Feb 25 17:42:15 CET 2010 - tiwai@suse.de
- don't use %py_requires macro, otherwise it add an implicit
dependency to git.rpm
-------------------------------------------------------------------
Sat Feb 20 19:16:04 UTC 2010 - jengelh@medozas.de
- use %_smp_mflags, use %_libexecdir for gitexecdir
-------------------------------------------------------------------
Wed Feb 17 10:00:42 CET 2010 - tiwai@suse.de
- fix installation of python stuff
-------------------------------------------------------------------
Mon Feb 15 09:31:29 CET 2010 - tiwai@suse.de
- updated to version 1.7.0: Major update
See details in
http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.0.txt
Notes on behaviour change:
* "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.
* "git send-email" does not make deep threads by default when sending a
patch series with more than two messages. All messages will be sent
as a reply to the first message, i.e. cover letter.
* "git status" is not "git commit --dry-run" anymore. This change does
not affect you if you run the command without argument.
* "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
amount of whitespace and nothing else; and "git diff -b" showed the
"diff --git" header line for such a change without patch text.
* 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
shell-quoted. The affected helpers are GIT_EXTERNAL_DIFF in the
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'.
- added git-remote-helpers sub-package for python helpers
-------------------------------------------------------------------
Thu Jan 21 08:24:01 CET 2010 - tiwai@suse.de