Skip to content

Commit e12c73c

Browse files
committed
tag-git: use the new Git for Windows snapshots URL
For almost eight years, Git for Windows' snapshots were hosted at https://wingit.blob.core.windows.net/files/index.html, i.e. on Azure Blobs. As of a combination of PRs [*1*], [*2*], snapshots are not only now built and deployed via GitHub Actions instead of Azure Pipelines (and ARM64 artifacts are now included, too), they are also hosted on GitHub [*3*], with the main page being hosted on GitHub Pages [*4*]. Therefore, the original link now redirects to a new location (which is also a lot easier to remember): http://gitforwindows.org/git-snapshots. Let's adjust the link to link there directly. References: *1*: #109 *2*: git-for-windows/gfw-helper-github-app#117 *3*: https://github.com/git-for-windows/git-snapshots/releases/ *4*: https://github.com/git-for-windows/git-snapshots/commits/gh-pages Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 9fe326b commit e12c73c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

update-scripts/tag-git.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ else
9494

9595
case "$display_version" in
9696
prerelease-*)
97-
url=https://wingit.blob.core.windows.net/files/index.html
97+
url=https://gitforwindows.org/git-snapshots/
9898
;;
9999
*-rc*)
100100
url=https://github.com/git-for-windows/git/releases/tag/$tag_name
@@ -138,4 +138,4 @@ git -C "$git_git_dir" rev-parse --verify "$git_rev"^0 >"$artifacts_dir"/git-comm
138138
git -C "$git_git_dir" tag $(test -z "$GPGKEY" || echo " -s") -m "$tag_message" "$tag_name" "$git_rev" &&
139139
git -C "$git_git_dir" bundle create "$artifacts_dir"/git.bundle origin/main.."$tag_name" &&
140140

141-
git -C "$build_extra_dir" bundle create "$artifacts_dir"/build-extra.bundle origin/main..main
141+
git -C "$build_extra_dir" bundle create "$artifacts_dir"/build-extra.bundle origin/main..main

0 commit comments

Comments
 (0)