Description
Here's the Weekly Digest for gitgitgadget/git:
ISSUES
Last week 7 issues were created.
Of these, 2 issues have been closed and 5 issues are still open.
OPEN ISSUES
💚 #259 Add support for drop!/reword! commits to git rebase -i
, by dscho
💚 #258 Fix flaky t5504 (in test case 9 - push with transfer.fsckobjects), by dscho
💚 #256 Avoid using Perl in the test suite, by dscho
💚 #254 [RFC] Create 'core.size=large' setting to update config defaults, by derrickstolee
💚 #253 Make rebase.reschedulefailedexec less overzealous, by dscho
CLOSED ISSUES
❤️ #257 Fix flaky t5516-fetch-push (test case 79 - deny fetch unreachable SHA1, allowtipsha1inwant=true), by dscho
❤️ #255 Improve instructions around how to set git-prompt preference variables., by ghedsouza
LIKED ISSUE
👍 #253 Make rebase.reschedulefailedexec less overzealous, by dscho
It received 👍 x1, 😄 x0, 🎉 x0 and ❤️ x0.
NOISY ISSUE
🔈 #255 Improve instructions around how to set git-prompt preference variables., by ghedsouza
It received 16 comments.
PULL REQUESTS
Last week, 14 pull requests were created, updated or merged.
OPEN PULL REQUEST
Last week, 1 pull request was opened.
💚 #256 Avoid using Perl in the test suite, by dscho
UPDATED PULL REQUEST
Last week, 13 pull requests were updated.
💛 #254 [RFC] Create 'core.size=large' setting to update config defaults, by derrickstolee
💛 #253 Make rebase.reschedulefailedexec less overzealous, by dscho
💛 #228 sha1-file: split OBJECT_INFO_FOR_PREFETCH, by derrickstolee
💛 #223 Fix racy fsmonitor, by dscho
💛 #221 Fix two issues pointed out by Coverity, by dscho
💛 #196 status: remove the empty line after hints, by johnlinp
💛 #194 Clean up after the removal of the scripted rebase, by dscho
💛 #184 Commit-graph: Write incremental files, by derrickstolee
💛 #183 p4: fix "Not a valid object name HEAD0" when unshelving, by mdymike
💛 #151 Fix a test on NTFS (and probably HFS+), by dscho
💛 #149 Fix MSVC support, at long last, by dscho
💛 #142 Optimize run_diff_files()' rename detection, by dscho
💛 #112 Commit-graph write refactor (was: Create commit-graph file format v2), by derrickstolee
COMMITS
Last week there were 29 commits.
🛠️ Git 2.22 Signed-off-by: Junio C Hamano gitster@pobox.com by gitster
🛠️ Merge tag 'l10n-2.22.0-rnd3' of git://github.com/git-l10n/git-po l10n-2.22.0-rnd3 * tag 'l10n-2.22.0-rnd3' of git://github.com/git-l10n/git-po: (25 commits) l10n: fr.po: Review French translation l10n: de.po: Update German translation l10n: de.po: improve description of 'git reset --quiet' l10n: TEAMS: Change German translation team leader l10n: bg.po: Updated Bulgarian translation (4581t) l10n: zh_CN: Revision for git v2.22.0 l10n l10n: zh_CN: for git v2.22.0 l10n round 1~3 l10n: es: 2.22.0 round 3 l10n: it.po: Updated Italian translation l10n: fr v2.22.0 rnd 3 l10n: vi.po(4581t): Updated Vietnamese translation for v2.22.0 round 3 l10n: git.pot: v2.22.0 round 3 (3 new, 2 removed) l10n: es: 2.22.0 round 2 l10n: bg.po: Updated Bulgarian translation (4580t) l10n: vi.po(4580t): Updated Vietnamese translation for v2.22.0 round 2 l10n: fr.po v2.22.0 round 2 l10n: git.pot: v2.22.0 round 2 (6 new, 3 removed) l10n: bg.po: Updated Bulgarian translation (4577t) l10n: es: 2.22.0 round 1 l10n: vi.po(4577t): Updated Vietnamese translation for v2.22.0 round 1 ... by gitster
🛠️ Merge branch 'fr_review' of git://github.com/jnavila/git * 'fr_review' of git://github.com/jnavila/git: l10n: fr.po: Review French translation by jiangxin
🛠️ Merge branch 'master' of git://github.com/alshopov/git-po * 'master' of git://github.com/alshopov/git-po: l10n: bg.po: Updated Bulgarian translation (4581t) by jiangxin
🛠️ l10n: fr.po: Review French translation Signed-off-by: Cédric Malard c.malard-git@valdun.net Signed-off-by: Jean-Noel Avila jn.avila@free.fr by cmalard
🛠️ Merge branch 'en/merge-directory-renames-fix' Recent code restructuring of merge-recursive engine introduced a regression dealing with rename/add conflict. * en/merge-directory-renames-fix: merge-recursive: restore accidentally dropped setting of path by gitster
🛠️ l10n: de.po: Update German translation Reviewed-by: Ralf Thielow ralf.thielow@gmail.com Signed-off-by: Matthias Rüster matthias.ruester@gmail.com by ruester
🛠️ l10n: de.po: improve description of 'git reset --quiet' Signed-off-by: Ralf Thielow ralf.thielow@gmail.com by ralfth
🛠️ l10n: TEAMS: Change German translation team leader Acked-by: Ralf Thielow ralf.thielow@gmail.com Signed-off-by: Matthias Rüster matthias.ruester@gmail.com by ruester
🛠️ merge-recursive: restore accidentally dropped setting of path In commit 8daec1df03de ("merge-recursive: switch from (oid,mode) pairs to a diff_filespec", 2019-04-05), we actually switched from (oid,mode,path) triplets to a diff_filespec -- but most callsites in the patch only needed to worry about oid and mode so the commit message focused on that. The oversight in the commit message apparently spilled over to the code as well; one of the dozen or so callsites accidentally dropped the setting of the path in the conversion. Restore the path setting in that location. Also, this pointed out that our testsuite was lacking a good rename/add test, at least one that involved the need for merge content with the rename. Add such a test, and since rename/add vs. add/rename could possibly be important, redo the merge the opposite direction to make sure we don't have issues with the direction of the merge. These testcases failed before restoring the setting of path, but with the paths appropriately set the testcases both pass. Reported-by: Ben Humphreys behumphreys@atlassian.com Based-on-patch-by: SZEDER Gábor szeder.dev@gmail.com Tested-by: Ben Humphreys behumphreys@atlassian.com Signed-off-by: Elijah Newren newren@gmail.com Signed-off-by: Junio C Hamano gitster@pobox.com by newren
🛠️ l10n: bg.po: Updated Bulgarian translation (4581t) Signed-off-by: Alexander Shopov ash@kambanaria.org by alshopov
🛠️ l10n: zh_CN: Revision for git v2.22.0 l10n Revise 51 translations, improving consistency for some phrased. Update email address for Fangyi Zhou Signed-off-by: Fangyi Zhou me@fangyi.io Signed-off-by: Jiang Xin worldhello.net@gmail.com by fangyi-zhou
🛠️ l10n: zh_CN: for git v2.22.0 l10n round 1~3 Translate 274 new messages (4581t0f0u) for git 2.22.0. Signed-off-by: Jiang Xin worldhello.net@gmail.com by jiangxin
🛠️ Merge branch '2.22' of https://github.com/ChrisADR/git-po * '2.22' of https://github.com/ChrisADR/git-po: l10n: es: 2.22.0 round 3 by jiangxin
🛠️ Merge branch 'it-l10n-wip' of github.com:AlessandroMenti/git-po * 'it-l10n-wip' of github.com:AlessandroMenti/git-po: l10n: it.po: Updated Italian translation by jiangxin
🛠️ l10n: es: 2.22.0 round 3 Signed-off-by: Christopher Diaz Riveros chrisadr@gentoo.org by ChrisADR
🛠️ l10n: it.po: Updated Italian translation Signed-off-by: Alessandro Menti alessandro.menti@alessandromenti.it by AlessandroMenti
🛠️ l10n: fr v2.22.0 rnd 3 Signed-off-by: Jean-Noël Avila jn.avila@free.fr by jnavila
🛠️ l10n: vi.po(4581t): Updated Vietnamese translation for v2.22.0 round 3 Signed-off-by: Tran Ngoc Quan vnwildman@gmail.com by vnwildman
🛠️ l10n: git.pot: v2.22.0 round 3 (3 new, 2 removed) Generate po/git.pot from v2.22.0-rc3 for git v2.22.0 l10n round 3. Signed-off-by: Jiang Xin worldhello.net@gmail.com by jiangxin
🛠️ Merge branch 'master' of git://git.kernel.org/pub/scm/git/git * 'master' of git://git.kernel.org/pub/scm/git/git: Git 2.22-rc3 i18n: fix typos found during l10n for git 2.22.0 RelNotes: minor typo fixes in 2.22.0 draft list-objects-filter: disable 'sparse:path' filters by jiangxin
🛠️ Git 2.22-rc3 Signed-off-by: Junio C Hamano gitster@pobox.com by gitster
🛠️ Merge branch 'cc/list-objects-filter-wo-sparse-path' Disable "--filter=sparse:path=" that would allow reading from paths on the filesystem. * cc/list-objects-filter-wo-sparse-path: list-objects-filter: disable 'sparse:path' filters by gitster
🛠️ i18n: fix typos found during l10n for git 2.22.0 Fix two typos introduced by the following commits: + 31fba9d3b4 (diff-parseopt: convert --[src|dst]-prefix, 2019-03-24) + ed8b4132c8 (remote-curl: mark all error messages for translation, 2019-03-05) Signed-off-by: Jiang Xin worldhello.net@gmail.com Acked-by: Johannes Schindelin johannes.schindelin@gmx.de Signed-off-by: Junio C Hamano gitster@pobox.com by jiangxin
🛠️ RelNotes: minor typo fixes in 2.22.0 draft Signed-off-by: Todd Zullinger tmz@pobox.com Signed-off-by: Junio C Hamano gitster@pobox.com by tmzullinger
🛠️ l10n: es: 2.22.0 round 2 Signed-off-by: Christopher Diaz Riveros chrisadr@gentoo.org by ChrisADR
🛠️ Merge branch 'master' of https://github.com/vnwildman/git * 'master' of https://github.com/vnwildman/git: l10n: vi.po(4580t): Updated Vietnamese translation for v2.22.0 round 2 by jiangxin
🛠️ Merge branch 'master' of git://github.com/alshopov/git-po * 'master' of git://github.com/alshopov/git-po: l10n: bg.po: Updated Bulgarian translation (4580t) by jiangxin
🛠️ l10n: bg.po: Updated Bulgarian translation (4580t) Signed-off-by: Alexander Shopov ash@kambanaria.org by alshopov
CONTRIBUTORS
Last week there were 13 contributors.
👤 gitster
👤 jiangxin
👤 cmalard
👤 ruester
👤 ralfth
👤 newren
👤 alshopov
👤 fangyi-zhou
👤 ChrisADR
👤 AlessandroMenti
👤 jnavila
👤 vnwildman
👤 tmzullinger
STARGAZERS
Last week there were no stargazers.
RELEASES
Last week there were no releases.
That's all for last week, please 👀 Watch and ⭐ Star the repository gitgitgadget/git to receive next weekly updates. 😃
You can also view all Weekly Digests by clicking here.
Your Weekly Digest bot. 📆