Replace all page contents with links to the new location
This trick was performed via:
git ls-files \*.md |
while read f
do
pr_url=https://github.com/git-for-windows/git-for-windows.github.io/pull/59
url=https://gitforwindows.org/${f%.md}
echo "This wiki page [has been migrated]($pr_url) to a new location: [$url]($url)" >"$f"
done
There are two pages where this does not make sense, `0.-Index` and
`_Footer`, which will be handled in the next commit.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
In a recent commit, we started publishing the mingw-w64-git-extra
package in addition to git-extra. We intend to completely remove the old
git-extra package over time, but let's start using the new
mingw-w64-git-extra prefix now. More background on this change can be
found in the attached commit.
Ref: 3f26b1b0ca
Signed-off-by: Dennis Ameling <dennis@dennisameling.com>
Git Credential Manager for Windows is no longer being maintained. The cross-platform Git Credential Manager Core (GCM Core) is the official replacement.
remove (this step may have to be repeated occasionally until https://github.com/msys2/msys2/issues/62 is fixed) as it is 404 now, and I don't have any problem doing it.
Change commands with pacman to easier to use pacboy and add git-extra package to install - to properly initialize git system config, like certificates location.
The document `Install inside MSYS2 proper` was *slightly* outdated:
- `pacman` now handles core package updates differently
- Git for Windows now signs the Pacman packages uploaded to Git for
Windows' Pacman repository
- Git for Windows currently requires a custom build of cURL (but it
makes sense to keep up-to-date by consuming Git for Windows' cURL
package anyway, because Git for Windows keeps an extra eye out for
cURL updates)
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>