Git for Windows 1.9.4.msysgit.2

2014-09-29 Thread Thomas Braun
Hi,

the Git for Windows team just released the third maintenance release of
the Windows-specific installers for git 1.9.4.

It can be downloaded from the usual place [1] and I also attached some
unsigned SHA sums [2].

New Features
- Comes with Git 1.9.4 plus Windows-specific patches.

Bugfixes
- Update bash to patchlevel 3.1.20(4) (msysgit PR#254, msysgit issue #253).
  Fixes CVE-2014-6271, CVE-2014-7169, CVE-2014-7186 and CVE-2014-7187.
- gitk.cmd now works when paths contain the ampersand () symbol (msysgit PR 
#252)
- Default to automatically close and restart applications in silent mode 
installation type
- Git svn is now usable again (regression in previous update, msysgit PR#245)

Have phun,
Thomas

[1]: 
https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140929/Git-1.9.4-preview20140929.exe
[2]: SHA1(Git-1.9.4-preview20140929.exe)= 
a7a50a18992a56de193e048b0205bf21b6721554
 SHA1(PortableGit-1.9.4-preview20140929.7z)= 
4b0698f2bf96b0dd64ecec477b3db9e3b3d46085
 SHA1(msysGit-netinstall-1.9.4-preview20140929.exe)= 
73ad668013941863e80e74bcf853d53eeed69714
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Git for Windows 1.9.4.msysgit.1

2014-08-15 Thread Thomas Braun
Hi,

the Git for Windows team just released the second maintenance release of
the Windows-specific installers for git 1.9.4.

It can be downloaded from the usual place [1] and I also attached some
(although non-gpg signed) SHA sums [2].


New Features

Comes with Git 1.9.4 plus Windows-specific patches
Add vimtutor (msysgit PR #220)
Update OpenSSH to 6.6.1p1 and its OpenSSL to 1.0.1i (msysgit PR
#221, #223, #224, #226, #229, #234, #236)
Update mingw OpenSSL to 0.9.8zb (msysgit PR #241, #242)

Bugfixes

Checkout problem with directories exceeding MAX_PATH (PR
msysgit/git#212, msysgit #227)
Backport a webdav fix from junio/maint (d9037e http-push.c: make
CURLOPT_IOCTLDATA a usable pointer, PR msysgit/git#230)

Regressions

git svn is/might be broken. Fixes welcome.


Have phun,
Thomas


[1]:
https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe
[2]:
SHA1(Git-1.9.4-preview20140815.exe)=
88dd56d612431055a5c5d65c3b2f23736ad725b0
SHA1(msysGit-netinstall-1.9.4-preview20140815.exe)=
c2cb700839fdcea79b5401f046878de711628ccc
SHA1(PortableGit-1.9.4-preview20140815.7z)=
4deafc5fede624437c68d101a660a78bdb56f899
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Git for Windows 1.9.4.msysgit.1

2014-08-15 Thread Karsten Blees
Am 15.08.2014 19:14, schrieb Thomas Braun:
 Hi,
 
 the Git for Windows team just released the second maintenance release of
 the Windows-specific installers for git 1.9.4.
 

Thank you so much!

 Regressions
 
 git svn is/might be broken. Fixes welcome.


rebase -b 0x6400 bin/libsvn_repos-1-0.dll
rebase -b 0x6420 bin/libneon-25.dll


See https://github.com/msysgit/msysgit/pull/245

--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


git-status rename conflict with a few git-adds following a git-mv (git for windows 1.9.4)

2014-08-12 Thread Panos Rontogiannis
Hello all,

I noticed a weird rename conflict after doing the following steps:
   1. Changing the extension of a file using 'git mv'.
   2. Editing the file and staging the changes.
   3. Creating a new file and staging it.

Here is the Git Bash output showing the issue. The previously mentioned steps 
are highlighted with asterisks.

$ git --version
git version 1.9.4.msysgit.0

$ git status
On branch master
Your branch is up-to-date with 'origin/master'.

nothing to commit, working directory clean

 STEP 1 

$ git mv src/documents/contact.html.md src/documents/contact.html.md.eco

$ git status
On branch master
Your branch is up-to-date with 'origin/master'.

Changes to be committed:
  (use git reset HEAD file... to unstage)

    renamed:    src/documents/contact.html.md - 
src/documents/contact.html.md.eco

 STEP 2 

$ git status
On branch master
Your branch is up-to-date with 'origin/master'.

Changes to be committed:
  (use git reset HEAD file... to unstage)

    renamed:    src/documents/contact.html.md - 
src/documents/contact.html.md.eco

Changes not staged for commit:
  (use git add file... to update what will be committed)
  (use git checkout -- file... to discard changes in working directory)

    modified:   src/documents/contact.html.md.eco


$ git add src/documents/contact.html.md.eco

$ git status
On branch master
Your branch is up-to-date with 'origin/master'.

Changes to be committed:
  (use git reset HEAD file... to unstage)

    deleted:    src/documents/contact.html.md
    new file:   src/documents/contact.html.md.eco

 STEP 3 

$ git status
On branch master
Your branch is up-to-date with 'origin/master'.

Changes to be committed:
  (use git reset HEAD file... to unstage)

    deleted:    src/documents/contact.html.md
    new file:   src/documents/contact.html.md.eco

Untracked files:
  (use git add file... to include in what will be committed)

    src/partials/address.html.md


$ git add src/partials/address.html.md

$ git status
On branch master
Your branch is up-to-date with 'origin/master'.

Changes to be committed:
  (use git reset HEAD file... to unstage)

    new file:   src/documents/contact.html.md.eco
    renamed:    src/documents/contact.html.md - 
src/partials/address.html.md


Note here that the renamed object is wrong. Also note that I haven't commited 
the changes to the repo. 

The repo is cloned from https://github.com/prontog/elm;.

Regards,

Panos
  --
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Git for Windows 1.9.4

2014-06-12 Thread Thomas Braun
Hi,

the Git for Windows team just released version 1.9.4 of the
Windows-specific installers.

It can be downloaded from the usual place [1].

New Features
* Comes with Git 1.9.4 plus Windows-specific patches

Bugfixes
* Upgrade openssl to 0.9.8za [2]
* Config option to disable side-band-64k for transport [3]
* Make git-http-backend, git-http-push, git-http-fetch
  available again [4]

Have phun,
Thomas

[1]:
https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140611/Git-1.9.4-preview20140611.exe
[2]: https://github.com/msysgit/msysgit/pull/212
[3]: https://github.com/msysgit/git/issues/101
[4]: https://github.com/msysgit/git/issues/174
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html