316 Commits

Author SHA256 Message Date
Stephan Kulow
af91750794 Accepting request 124407 from devel:tools:scm
- updated to version 1.7.10.4: just minor fixes in git-checkout,
  git-grep, git-rebase, updated translations and documents.
  See Documentation/RelNotes/1.7.10.4.txt for details. (forwarded request 124185 from tiwai)

OBS-URL: https://build.opensuse.org/request/show/124407
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=86
2012-06-12 05:07:46 +00:00
Stephan Kulow
cfb2ce2c75 Accepting request 122868 from devel:tools:scm
- updated to version 1.7.10.3:
 * From this release on, the "git merge" command in an interactive
   session will start an editor when it automatically resolves the
   merge for the user to explain the resulting commit, just like the
   "git commit" command does when it wasn't given a commit message.
 * The "--binary/-b" options to "git am" have been a no-op for quite a
   while and were deprecated in mid 2008 (v1.6.0).  When you give these
   options to "git am", it will now warn and ask you not to use them.
 * When you do not tell which branches and tags to push to the "git
   push" command in any way, the command used "matching refs" rule to
   update remote branches and tags with branches and tags with the
   same name you locally have.
  See details and more changes in Documentation/RelNotes/1.7.10.txt,
  1.7.10.1.txt, 1.7.10.2.txt and 1.7.10.3.txt. (forwarded request 122712 from tiwai)

OBS-URL: https://build.opensuse.org/request/show/122868
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=85
2012-05-31 15:04:45 +00:00
Stephan Kulow
36eb543815 Accepting request 116217 from devel:tools:scm
Fix build on SLE_11

Note that there are a lot of changes in the diff that seem to be from the format spec source service. Didn't know whether I should revert them... (forwarded request 116130 from flichtenheld)

OBS-URL: https://build.opensuse.org/request/show/116217
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=84
2012-05-08 04:45:18 +00:00
Stephan Kulow
67ab7b421e Accepting request 107456 from devel:tools:scm
- Update to version 1.7.9.2:
  * Bash completion script (in contrib/) did not like a pattern that
    begins with a dash to be passed to __git_ps1 helper function.
  * Adaptation of the bash completion script (in contrib/) for zsh
    incorrectly listed all subcommands when "git <TAB><TAB>" was given
    to ask for list of porcelain subcommands.
  * The build procedure for profile-directed optimized binary was not
    working very well.
  * Some systems need to explicitly link -lcharset to get locale_charset().
  * t5541 ignored user-supplied port number used for HTTP server testing.
  * The error message emitted when we see an empty loose object was
    not phrased correctly.
  * The code to ask for password did not fall back to the terminal
    input when GIT_ASKPASS is set but does not work (e.g. lack of X
    with GUI askpass helper).
  * We failed to give the true terminal width to any subcommand when
    they are invoked with the pager, i.e. "git -p cmd".
  * map_user() was not rewriting its output correctly, which resulted
    in the user visible symptom that "git blame -e" sometimes showed
    excess '>' at the end of email addresses.
  * "git checkout -b" did not allow switching out of an unborn branch.
  * When you have both .../foo and .../foo.git, "git clone .../foo" did not
    favor the former but the latter.
  * "git commit" refused to create a commit when entries added with
    "add -N" remained in the index, without telling Git what their content
    in the next commit should be. We should have created the commit without
    these paths.
  * "git diff --stat" said "files", "insertions", and "deletions" even
    when it is showing one "file", one "insertion" or one "deletion".
  * The output from "git diff --stat" for two paths that have the same

OBS-URL: https://build.opensuse.org/request/show/107456
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=83
2012-02-29 13:06:43 +00:00
Stephan Kulow
3b4e3c9244 Accepting request 103515 from devel:tools:scm
- updated to v1.7.9:
 * gitk updates accumulated since early 2011.
 * git-gui updated to 0.16.0.
 * git-p4 (in contrib/) updates.
 * Git uses gettext to translate its most common interface messages
   into the user's language if translations are available and the
   locale is appropriately set. Distributors can drop new PO files
   in po/ to add new translations.
 * The code to handle username/password for HTTP transactions used in
   "git push" & "git fetch" learned to talk "credential API" to
   external programs to cache or store them, to allow integration with
   platform native keychain mechanisms.
 * The input prompts in the terminal use our own getpass() replacement
   when possible. HTTP transactions used to ask for the username without
   echoing back what was typed, but with this change you will see it as
   you type.
 * The internals of "revert/cherry-pick" have been tweaked to prepare
   building more generic "sequencer" on top of the implementation that
   drives them.
 * "git rev-parse FETCH_HEAD" after "git fetch" without specifying
   what to fetch from the command line will now show the commit that
   would be merged if the command were "git pull".
 * "git add" learned to stream large files directly into a packfile
   instead of writing them into individual loose object files.
 * "git checkout -B <current branch> <elsewhere>" is a more intuitive
   way to spell "git reset --keep <elsewhere>".
 * "git checkout" and "git merge" learned "--no-overwrite-ignore" option
   to tell Git that untracked and ignored files are not expendable.
 * "git commit --amend" learned "--no-edit" option to say that the
   user is amending the tree being recorded, without updating the (forwarded request 103501 from tiwai)

OBS-URL: https://build.opensuse.org/request/show/103515
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=82
2012-02-14 10:23:58 +00:00
Stephan Kulow
0877bcd841 Accepting request 102275 from devel:tools:scm
- Added the ability to specify the user and group that git-daemon run
  as (bnc#742661).

OBS-URL: https://build.opensuse.org/request/show/102275
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=81
2012-02-01 08:57:38 +00:00
Stephan Kulow
747cdb81be Accepting request 99805 from devel:tools:scm
- Update to v1.7.8.3
  * Bugfixes, see included ChangeLog for details. (forwarded request 99773 from namtrac)

OBS-URL: https://build.opensuse.org/request/show/99805
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=80
2012-01-17 10:32:52 +00:00
Stephan Kulow
af1f2cd787 Accepting request 96975 from devel:tools:scm
- Implement %check via make test
- Update to v1.7.8
 New features:
 * The date parser now accepts timezone designators that lack minutes
   part and also has a colon between "hh:mm".
 
 * The contents of the /etc/mailname file, if exists, is used as the
   default value of the hostname part of the committer/author e-mail.
 * "git am" learned how to read from patches generated by Hg.
 * "git archive" talking with a remote repository can report errors
   from the remote side in a more informative way.
 * "git branch" learned an explicit --list option to ask for branches
   listed, optionally with a glob matching pattern to limit its output.
 * "git check-attr" learned "--cached" option to look at .gitattributes
   files from the index, not from the working tree.
 * Variants of "git cherry-pick" and "git revert" that take multiple
   commits learned to "--continue" and "--abort".
 * "git daemon" gives more human readble error messages to clients
   using ERR packets when appropriate.
 * Errors at the network layer is logged by "git daemon".
 * "git diff" learned "--minimal" option to spend extra cycles to come
   up with a minimal patch output.
 * "git diff" learned "--function-context" option to show the whole
   function as context that was affected by a change.
 * "git difftool" can be told to skip launching the tool for a path by
   answering 'n' to its prompt.
 * "git fetch" learned to honor transfer.fsckobjects configuration to
   validate the objects that were received from the other end, just like
   "git receive-pack" (the receiving end of "git push") does.
 * "git fetch" makes sure that the set of objects it received from the (forwarded request 96521 from namtrac)

OBS-URL: https://build.opensuse.org/request/show/96975
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=79
2011-12-21 09:00:12 +00:00
Stephan Kulow
245b42b36a Accepting request 90951 from devel:tools:scm
- update to git 1.7.7.3: minor bug-fix release;
  See Documentation/RelNotes/1.7.7.3.txt for details.

- update to git 1.7.7.1:
- update to git 1.7.7.2: bug-fix releases; 
  See Documentation/RelNotes/1.7.7.1.txt and
      Documentation/RelNotes/1.7.7.2.txt for details. (forwarded request 90942 from tiwai)

OBS-URL: https://build.opensuse.org/request/show/90951
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=77
2011-11-14 10:52:14 +00:00
Sascha Peilicke
f095b10fa9 Accepting request 88200 from devel:tools:scm
- license update: GPL-2.0
  SPDX format (See http://www.spdx.org/licenses)

- correct license tag to "GPL v2 only" (bnc#724499)

- split cgit builds to an individual repo

OBS-URL: https://build.opensuse.org/request/show/88200
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=75
2011-10-18 12:03:57 +00:00
Ruediger Oertel
68e174fb4d Accepting request 86897 from devel:tools:scm
- updated to git 1.7.7; see git changelog for more details

- updated to 1.7.7: major update from 1.7.6.x, including i18n/l10n
  prepartion, updates of git-p4, gitweb, improved coloring,
  various updates of git-am, git-bisect, git-cherck-attr, etc.
  See Documentation/RelNotes/1.7.7.txt for details. (forwarded request 86877 from tiwai)

OBS-URL: https://build.opensuse.org/request/show/86897
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=74
2011-10-06 15:21:27 +00:00
Sascha Peilicke
564e2851f4 Accepting request 85088 from devel:tools:scm
- updated to git 1.7.6.4; see git changelog for more details

- updated to 1.7.6.4: minor bug fixes for git-am, git-branch,
  git-clone, etc
  See Documentation/RelNotes/1.7.6.4.txt for details.

OBS-URL: https://build.opensuse.org/request/show/85088
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=73
2011-09-27 14:15:05 +00:00
Sascha Peilicke
01d11801cb Accepting request 84027 from devel:tools:scm
- updated to 1.7.6.2, 1.7.6.3: see git changelog for more details

- updated to 1.7.6.2, 1.7.6.3: minor bug fix releases
  git-fetch performance fix, other fixes in git-reflog, reset,
  status, tag
  See Documentation/RelNotes/1.7.6.[23].txt for details. (forwarded request 84020 from tiwai)

OBS-URL: https://build.opensuse.org/request/show/84027
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=72
2011-09-22 08:45:10 +00:00
Sascha Peilicke
6842f0246c Accepting request 79786 from devel:tools:scm
- update to git 1.7.6.1: see git changelog for more details

- updated to 1.7.6.1: bug fix release; many fixes for e.g. git
  checkout, git diff, git fetch, etc.
  See Documentation/RelNotes/1.7.6.1.txt for details. (forwarded request 79785 from tiwai)

OBS-URL: https://build.opensuse.org/request/show/79786
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=70
2011-08-26 07:28:00 +00:00
Sascha Peilicke
445db7aae3 Accepting request 74837 from devel:tools:scm
- Add SuSEfirewall profile for git-daemon (bnc#628048)

OBS-URL: https://build.opensuse.org/request/show/74837
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=66
2011-06-30 08:43:40 +00:00
Sascha Peilicke
c39a0ede2e Accepting request 74766 from devel:tools:scm
- update to 1.7.6: major update from 1.7.5.x
 * Similar to branch names, tagnames that begin with "-" are now
   disallowed.
 * Simpler handling of a large file depending on core.bigfilethreshold
   value
 * A magic pathspec ":/" handling
 * Some new options and improvements in git-blame, git-commit, git-diff
   git-grep, git-format-patch, git-merge, git-svn, etc
 * More prepartaion for i18n/l10n.
 See Documentation/RelNotes/1.7.6.txt for details.

- updated to git 1.7.6: see git changelog for more details

OBS-URL: https://build.opensuse.org/request/show/74766
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=64
2011-06-28 13:12:53 +00:00
Sascha Peilicke
b86c420ae9 Accepting request 74452 from devel:tools:scm
- fix html path (bnc#675392)

OBS-URL: https://build.opensuse.org/request/show/74452
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=62
2011-06-27 09:04:27 +00:00
Sascha Peilicke
4aa5e2ef99 Accepting request 74214 from devel:tools:scm
- Fix VUL-1: git-web xss (CVE-2011-2186, bnc#698456)

OBS-URL: https://build.opensuse.org/request/show/74214
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=60
2011-06-21 07:27:47 +00:00
Sascha Peilicke
af308e76b9 Accepting request 72811 from devel:tools:scm
- updated to 1.7.5.4: maintainance update, fixing in git-add -p
  option, git diff -C option, and git-rerere merge error fix, etc

- updated to git 1.7.5.4: see git changelog for more details

- Fix incompatibilies with git 1.7.5.x to build cgit again (forwarded request 72784 from tiwai)

OBS-URL: https://build.opensuse.org/request/show/72811
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=58
2011-06-07 07:13:36 +00:00
Sascha Peilicke
c95967f6ec Accepting request 72455 from devel:tools:scm
- Do not buildrequire git, the package builds it's own git and the
  buildrequires line only makes backporting harder. (forwarded request 72428 from michal-m)

OBS-URL: https://build.opensuse.org/request/show/72455
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=56
2011-06-06 09:13:55 +00:00
Ruediger Oertel
e64fb1abeb Accepting request 66945 from devel:tools:scm
Accepted submit request 66945 from user dirkmueller

OBS-URL: https://build.opensuse.org/request/show/66945
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=54
2011-04-21 11:26:23 +00:00
Sascha Peilicke
fefabef4aa Accepting request 62741 from devel:tools:scm
Accepted submit request 62741 from user dirkmueller

OBS-URL: https://build.opensuse.org/request/show/62741
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=52
2011-02-25 08:46:53 +00:00
Berthold Gunreben
3de3b4ed3c Accepting request 56300 from devel:tools:scm
Accepted submit request 56300 from user elvigia

OBS-URL: https://build.opensuse.org/request/show/56300
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=49
2010-12-20 11:57:40 +00:00
Berthold Gunreben
9774fe6f1c Accepting request 55889 from devel:tools:scm
Accepted submit request 55889 from user elvigia

OBS-URL: https://build.opensuse.org/request/show/55889
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=47
2010-12-14 09:14:06 +00:00
OBS User autobuild
e7ab412933 Accepting request 50188 from devel:tools:scm
Copy from devel:tools:scm/git based on submit request 50188 from user coolo

OBS-URL: https://build.opensuse.org/request/show/50188
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=46
2010-10-11 12:44:17 +00:00
OBS User autobuild
1d30070c3c Accepting request 49174 from devel:tools:scm
Copy from devel:tools:scm/git based on submit request 49174 from user coolo

OBS-URL: https://build.opensuse.org/request/show/49174
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=45
2010-09-27 14:02:12 +00:00
OBS User autobuild
3a291d79a3 Accepting request 40935 from devel:tools:scm
Copy from devel:tools:scm/git based on submit request 40935 from user pbaudis

OBS-URL: https://build.opensuse.org/request/show/40935
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=42
2010-06-02 00:01:27 +00:00
OBS User autobuild
d566e9a105 Accepting request 37451 from devel:tools:scm
Copy from devel:tools:scm/git based on submit request 37451 from user dirkmueller

OBS-URL: https://build.opensuse.org/request/show/37451
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=41
2010-04-15 22:19:02 +00:00
OBS User autobuild
5130f3c3eb 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
2010-03-19 08:38:33 +00:00
OBS User autobuild
107b964c13 Accepting request 30384 from devel:tools:scm
Copy from devel:tools:scm/git based on submit request 30384 from user tiwai

OBS-URL: https://build.opensuse.org/request/show/30384
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=38
2010-01-25 15:28:14 +00:00
OBS User autobuild
fa8564e9e8 Accepting request 27351 from devel:tools:scm
Copy from devel:tools:scm/git based on submit request 27351 from user tiwai

OBS-URL: https://build.opensuse.org/request/show/27351
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=37
2009-12-21 23:24:44 +00:00
OBS User autobuild
428dae9657 Accepting request 24728 from devel:tools:scm
Copy from devel:tools:scm/git based on submit request 24728 from user tiwai

OBS-URL: https://build.opensuse.org/request/show/24728
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=36
2009-11-20 13:21:15 +00:00
OBS User autobuild
33059de59f Accepting request 21594 from devel:tools:scm
Copy from devel:tools:scm/git based on submit request 21594 from user tiwai

OBS-URL: https://build.opensuse.org/request/show/21594
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=34
2009-10-03 01:33:25 +00:00
OBS User autobuild
9ad0593704 Accepting request 19394 from devel:tools:scm
Copy from devel:tools:scm/git based on submit request 19394 from user tiwai

OBS-URL: https://build.opensuse.org/request/show/19394
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=33
2009-09-02 16:48:38 +00:00
OBS User unknown
6be84256e5 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=32 2009-07-04 08:11:03 +00:00
OBS User unknown
4ac0638322 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=31 2009-06-05 22:02:11 +00:00
OBS User unknown
c1f2785a53 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=30 2009-05-08 12:49:01 +00:00
OBS User unknown
1075610a8d OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=29 2009-04-20 14:27:38 +00:00
OBS User unknown
9dd1f69d67 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=28 2009-04-18 11:57:08 +00:00
OBS User unknown
9ca2316bbd OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=27 2009-03-17 22:56:31 +00:00
OBS User unknown
a9df5a685b OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=26 2009-03-05 15:44:01 +00:00
OBS User unknown
668620425b OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=25 2009-02-09 09:38:55 +00:00
OBS User unknown
cd1edf3ded OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=24 2009-01-29 22:20:16 +00:00
OBS User unknown
2a4f3a739f OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=23 2009-01-08 17:10:09 +00:00
OBS User unknown
f08bb9f28a OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=22 2008-11-20 14:22:38 +00:00
OBS User unknown
d6ec981cc4 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=21 2008-11-04 16:37:56 +00:00
OBS User unknown
9b06d8ff95 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=20 2008-10-24 13:08:26 +00:00
OBS User unknown
665dfbc457 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=19 2008-10-06 15:51:20 +00:00
OBS User unknown
a5b9ef4399 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=18 2008-09-29 15:38:02 +00:00
OBS User unknown
3cbf2bf2ef OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=17 2008-09-26 14:51:20 +00:00