-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use github for gnulib #6762
Use github for gnulib #6762
Conversation
- name: Override submodule URL and initialize submodules | ||
run: | | ||
git submodule sync --recursive | ||
git config submodule.gnulib.url https://github.com/coreutils/gnulib.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This effectively overrides that file, right? https://github.com/coreutils/coreutils/blob/master/.gitmodules
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nope, it adds
[submodule "gnulib"]
url = https://github.com/coreutils/gnulib.git
in .git/config
We should leave a comment or something to explain why this replacement is a good idea. Sure, today github.com seems to be vastly faster and more reliable than savannah.gnu.org, but when that changes (or if anyone reads the code) it would be nice to be told why we substitute a different repository (even if it should contain the same stuff). |
Yay, no more timeouts! |
and less load for the GNU project :) |
No description provided.