This is the quickest way to avoid those warnings, and this developer deems
that good enough a work around.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This is the exact same vimtutor from the vim source repository:
https://vim.googlecode.com/hg/src/vimtutor
It works as is in MSYS, although there are a couple of warnings:
/bin/vimtutor: line 28: mktemp: command not found
/bin/vimtutor: line 28: tempfile: command not found
Since these utilities are not present.
However, the script has a contingency for that scenario, and manages to
create a temporary copy of the tutor file anyway, so all is well.
Signed-off-by: Curtis Rueden <ctrueden@wisc.edu>
Back in 2009, when we first added our custom-built OpenSSL, we
forgot to remove the msys-version in /bin first.
Keep the DLL-files, as msys-openssh depend on them.
On advice from OpenSSL Security Advisory [05 Jun 2014], we should
upgrade OpenSSL to version 0.9.8za ASAP. CVE-2014-0195 is
especially nasty, as it allows arbitrary code execution.
http://www.openssl.org/news/secadv_20140605.txt
Include a patch to make sure this compiles.
Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
After an annoying mistake and subsequent abort during a merging-rebase, I used the --force only to be stopped by a message from shears.sh telling me to use --force.
(As a side note, this commit could only have been made more amusing by submitting it yesterday...)
It has been deprecated for quite a while now...
Besides, it does not seem to work here:
ln: accessing `//installer-tmp/bin/git.exe': No such host or network path
ln: accessing `//installer-tmp/bin/git.exe': No such host or network path
...
The URLs for the cloned repositories are now HTTPS URLs, therefore we
need to use the proxy also for such URLs if a proxy is required for
cloning to work.
Since our Perl installation is there to cater to Git for Windows,
which is not an msys program, it would be better for it to treat
paths as Win32 paths. So let's tweak it to do just that.
GoogleCode's support for uploads went the way of the Google Reader.
Makes you wonder what GoogleCode is good for, really. Probably going
bu-bye altogether, soon. Guess we should have clicked more ads.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
MSYS, being a Cygwin fork, also looks at the CYGWIN environment variable.
If a user has installed Cygwin in parallel to MSYS / Git for Windows,
CYGWIN might have been customized for Cygwin, but that customization also
affects MSYS and might break it as [1] shows. Do not explicitly mention
Cygwin as part of the installer's wizard page for adjusting the PATH
environment variable to not give the impression parallel use with Cygwin
was supported or encouraged. In fact, we highly recommend to not have
Cygwin installed at all when using MSYS / Git for Windows.
Also, take the opportunity to reword the other options on the same wizard
page for clarity.
[1] https://github.com/msysgit/git/issues/118
Signed-off-by: Thomas Braun <thomas.braun@byte-physics.de>
Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
I should really learn to 'git grep' in the top-level directory rather
than a subdirectory.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This pull request fixes all /src/ release.sh scripts to disregard
certain settings which would interfere with them otherwise.
It also updates our vim to version 7.4.
Thanks, Stefan Naewe!
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Makes it possible to commit inside of /src/<package>/release.sh when
core.whitespace is set and an auto-enabled pre-commit hook
(i.e. init.templatedir is set) is used that checks for whitespace problems.
Signed-off-by: Stefan Naewe <stefan.naewe@gmail.com>