diff options
| author | Michael Paquier | 2014-10-03 09:47:47 +0900 | 
|---|---|---|
| committer | Mike McQuaid | 2014-10-02 18:43:45 -0700 | 
| commit | b844416952fa29c167937dccf78ac8a2cba5cf8e (patch) | |
| tree | d3e3c9091ba3b92295f58be6bb5d5d8274d94a3a /Library/Formula/git.rb | |
| parent | a38ebc5cc309ab0dea525f97ef631583ddf8f590 (diff) | |
| download | homebrew-b844416952fa29c167937dccf78ac8a2cba5cf8e.tar.bz2 | |
git 2.1.2
This is a bugfix release, including the following changes:
* "git push" over HTTP transport had an artificial limit on number of
  refs that can be pushed imposed by the command line length.
* When receiving an invalid pack stream that records the same object
  twice, multiple threads got confused due to a race.
* An attempt to remove the entire tree in the "git fast-import" input
  stream caused it to misbehave.
* Reachability check (used in "git prune" and friends) did not add a
  detached HEAD as a starting point to traverse objects still in use.
* "git config --add section.var val" used to lose existing
  section.var whose value was an empty string.
* "git fsck" failed to report that it found corrupt objects via its
  exit status in some cases.
Diffstat (limited to 'Library/Formula/git.rb')
| -rw-r--r-- | Library/Formula/git.rb | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb index 540939e5f..991d28865 100644 --- a/Library/Formula/git.rb +++ b/Library/Formula/git.rb @@ -2,8 +2,8 @@ require 'formula'  class Git < Formula    homepage "http://git-scm.com" -  url "https://www.kernel.org/pub/software/scm/git/git-2.1.1.tar.gz" -  sha1 "23c5c7d808d9991677a847b6bfac1abad568020e" +  url "https://www.kernel.org/pub/software/scm/git/git-2.1.2.tar.gz" +  sha1 "1385edbc9aa77b6e0971f52f75ba4f2ff35c1aa2"    head "https://github.com/git/git.git", :shallow => false @@ -14,13 +14,13 @@ class Git < Formula    end    resource "man" do -    url "https://www.kernel.org/pub/software/scm/git/git-manpages-2.1.1.tar.gz" -    sha1 "5981c26d58c74834e666c6891b25ec707be1a0d1" +    url "https://www.kernel.org/pub/software/scm/git/git-manpages-2.1.2.tar.gz" +    sha1 "912ff9865d6c6ab3d411566a6805431c7d653efd"    end    resource "html" do -    url "https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.1.1.tar.gz" -    sha1 "10ddf597009ea74aedde0ab9234f231d69be757d" +    url "https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.1.2.tar.gz" +    sha1 "229b697db2c6f7ba0831842849f9dc0651f0fc63"    end    option 'with-blk-sha1', 'Compile with the block-optimized SHA1 implementation'  | 
