We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Redirect "0 Index" and "_Footer" correctly In the previous commit, I redirected all wiki pages to their new location. This was done in an automated fashion and therefore did not exempt the two pages that were dropped during the migration in https://github.com/git-for-windows/git-for-windows.github.io/pull/59/commits/c45fb638b3b2a These two pages were dropped because they played roles that are now played by other pages, so let's adjust the original wiki pages to point to those other pages instead. Signed-off-by: Johannes Schindelin <[email protected]>
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 <[email protected]>
Make 0.Index alphabetically sorted again Like any good index, it has an inherent (alphabetical) order. Unfortunately, this was missed when a new item was added recently. Using my teutonic thoroughness, I set the order right again. Signed-off-by: Johannes Schindelin <[email protected]>
Updated 0. Index (markdown)
Rename the ``The "Git-wrapper"´´ page This is the second of the two pages that currently prevent the repository from being checked out on Windows. Signed-off-by: Johannes Schindelin <[email protected]>
Rename the ``Git-for-Windows' "snapshots"´´ page This is one of the two pages that currently prevent the repository from being checked out on Windows. Signed-off-by: Johannes Schindelin <[email protected]>
removed fork(), exec(), CreateProcess(): Windows vs Linux - Now simply "exec() semantics"
added Upgrading the 'perl' component
added The "Git-wrapper"
added Technical-overview
added Git-for-Windows' "snapshots"
add exec()-semantics
add Building-new-package-versions
added extra page
Rename a document so that it can be checked out on Windows Colons are not allowed in Windows filenames... Signed-off-by: Johannes Schindelin <[email protected]>
Use MSYS2 instead of Msys2 There seems to be a strong preference by the MSYS2 project to have it in all-capital letters. Signed-off-by: Johannes Schindelin <[email protected]>
added new page index
added Merge-Conflicts---Resolving-and-Remembering-them
I'm that poor soul..