Here's the Weekly Digest for git-for-windows/git:
ISSUES
Last week 7 issues were created.
Of these, 4 issues have been closed and 3 issues are still open.
OPEN ISSUES
💚 #2606 Installation error: Unable to run post-install scripts, by normmacneilottawa
💚 #2605 mkfifo hangs when file permissions are supplied, by sio
💚 #2603 Ctrl-c can't kill gradlew process, by hojongs
CLOSED ISSUES
❤️ #2607 dns suffix not added automatically, by lefebvresam
❤️ #2604 Git for Windows updater performs an automatic restart without confirmation, by antidamage
❤️ #2602 .gitignore in parent folder seems not considered, by Fr0sT-Brutal
❤️ #2601 [SOLVED] Git not using the SSH Agent key?, by crazyelectron-io
NOISY ISSUE
🔈 #2607 dns suffix not added automatically, by lefebvresam
It received 8 comments.
PULL REQUESTS
Last week, 1 pull request was created, updated or merged.
UPDATED PULL REQUEST
Last week, 1 pull request was updated.
💛 #2580 CMake build system for git, by SibiSiddharthan
COMMITS
Last week there were 2 commits.
🛠️ Merge branch 'ds/build-homebrew-gettext-fix' Recent update to Homebrew used by macOS folks breaks build by moving gettext library and necessary headers. * ds/build-homebrew-gettext-fix: macOS/brew: let the build find gettext headers/libraries/msgfmt Signed-off-by: Johannes Schindelin johannes.schindelin@gmx.de by dscho
🛠️ macOS/brew: let the build find gettext headers/libraries/msgfmt Apparently a recent Homebrew update now installs gettext into the subdirectory /usr/local/opt/gettext/[lib/include]. Sometimes the ci job succeeds: brew link --force gettext Linking /usr/local/Cellar/gettext/0.20.1... 179 symlinks created And sometimes installing the package "gettext" with force-link fails: brew link --force gettext Warning: Refusing to link macOS provided/shadowed software: gettext If you need to have gettext first in your PATH run: echo 'export PATH="/usr/local/opt/gettext/bin:$PATH"' >> ~/.bash_profile (And the is not the final word either, since macOS itself says: The default interactive shell is now zsh.) Anyway, The latter requires CFLAGS to include /usr/local/opt/gettext/include and LDFLAGS to include /usr/local/opt/gettext/lib. Likewise, the msgfmt tool is no longer in the PATH. While it is unclear which change is responsible for this breakage (that most notably only occurs on CI build agents that updated very recently), https://github.com/Homebrew/homebrew-core/pull/53489 has fixed it. Nevertheless, let's work around this issue, as there are still quite a few build agents out there that need some help in this regard: we explicitly do not call brew update in our CI/PR builds anymore. Helped-by: Carlo Marcelo Arenas Belón carenas@gmail.com Signed-off-by: Johannes Schindelin johannes.schindelin@gmx.de Signed-off-by: Torsten Bögershausen tboegi@web.de Signed-off-by: Junio C Hamano gitster@pobox.com by dscho
CONTRIBUTORS
Last week there was 1 contributor.
👤 dscho
STARGAZERS
Last week there were 24 stagazers.
⭐ cklxmu
⭐ LX07wz
⭐ TokenYc
⭐ kokisato18
⭐ apryyl489
⭐ westorange233
⭐ LussacZheng
⭐ jjyylh
⭐ gfody
⭐ dslzuha
⭐ wumengde
⭐ j178
⭐ Adriankhl
⭐ Mcdull0921
⭐ timnook
⭐ rescenic
⭐ desmondkung
⭐ yun14u
⭐ LinzNT
⭐ sandq
⭐ anonymousuo
⭐ Slowpokie
⭐ diegogzorrilla
⭐ w316525096
You all are the stars! 🌟
RELEASES
Last week there were no releases.
That's all for last week, please 👀 Watch and ⭐ Star the repository git-for-windows/git to receive next weekly updates. 😃
You can also view all Weekly Digests by clicking here.
Your Weekly Digest bot. 📆
Here's the Weekly Digest for git-for-windows/git:
ISSUES
Last week 7 issues were created.
Of these, 4 issues have been closed and 3 issues are still open.
OPEN ISSUES
💚 #2606 Installation error: Unable to run post-install scripts, by normmacneilottawa
💚 #2605 mkfifo hangs when file permissions are supplied, by sio
💚 #2603 Ctrl-c can't kill gradlew process, by hojongs
CLOSED ISSUES
❤️ #2607 dns suffix not added automatically, by lefebvresam
❤️ #2604 Git for Windows updater performs an automatic restart without confirmation, by antidamage
❤️ #2602 .gitignore in parent folder seems not considered, by Fr0sT-Brutal
❤️ #2601 [SOLVED] Git not using the SSH Agent key?, by crazyelectron-io
NOISY ISSUE
🔈 #2607 dns suffix not added automatically, by lefebvresam
It received 8 comments.
PULL REQUESTS
Last week, 1 pull request was created, updated or merged.
UPDATED PULL REQUEST
Last week, 1 pull request was updated.
💛 #2580 CMake build system for git, by SibiSiddharthan
COMMITS
Last week there were 2 commits.
🛠️ Merge branch 'ds/build-homebrew-gettext-fix' Recent update to Homebrew used by macOS folks breaks build by moving gettext library and necessary headers. * ds/build-homebrew-gettext-fix: macOS/brew: let the build find gettext headers/libraries/msgfmt Signed-off-by: Johannes Schindelin johannes.schindelin@gmx.de by dscho
🛠️ macOS/brew: let the build find gettext headers/libraries/msgfmt Apparently a recent Homebrew update now installs
gettextinto the subdirectory /usr/local/opt/gettext/[lib/include]. Sometimes the ci job succeeds: brew link --force gettext Linking /usr/local/Cellar/gettext/0.20.1... 179 symlinks created And sometimes installing the package "gettext" with force-link fails: brew link --force gettext Warning: Refusing to link macOS provided/shadowed software: gettext If you need to have gettext first in your PATH run: echo 'export PATH="/usr/local/opt/gettext/bin:$PATH"' >> ~/.bash_profile (And the is not the final word either, since macOS itself says: The default interactive shell is now zsh.) Anyway, The latter requires CFLAGS to include /usr/local/opt/gettext/include and LDFLAGS to include /usr/local/opt/gettext/lib. Likewise, themsgfmttool is no longer in thePATH. While it is unclear which change is responsible for this breakage (that most notably only occurs on CI build agents that updated very recently), https://github.com/Homebrew/homebrew-core/pull/53489 has fixed it. Nevertheless, let's work around this issue, as there are still quite a few build agents out there that need some help in this regard: we explicitly do not callbrew updatein our CI/PR builds anymore. Helped-by: Carlo Marcelo Arenas Belón carenas@gmail.com Signed-off-by: Johannes Schindelin johannes.schindelin@gmx.de Signed-off-by: Torsten Bögershausen tboegi@web.de Signed-off-by: Junio C Hamano gitster@pobox.com by dschoCONTRIBUTORS
Last week there was 1 contributor.
👤 dscho
STARGAZERS
Last week there were 24 stagazers.
⭐ cklxmu
⭐ LX07wz
⭐ TokenYc
⭐ kokisato18
⭐ apryyl489
⭐ westorange233
⭐ LussacZheng
⭐ jjyylh
⭐ gfody
⭐ dslzuha
⭐ wumengde
⭐ j178
⭐ Adriankhl
⭐ Mcdull0921
⭐ timnook
⭐ rescenic
⭐ desmondkung
⭐ yun14u
⭐ LinzNT
⭐ sandq
⭐ anonymousuo
⭐ Slowpokie
⭐ diegogzorrilla
⭐ w316525096
You all are the stars! 🌟
RELEASES
Last week there were no releases.
That's all for last week, please 👀 Watch and ⭐ Star the repository git-for-windows/git to receive next weekly updates. 😃
You can also view all Weekly Digests by clicking here.