Skip to content

Weekly Digest (8 September, 2019 - 15 September, 2019) #338

Closed
@weekly-digest

Description

@weekly-digest

Here's the Weekly Digest for gitgitgadget/git:


ISSUES

Last week 1 issue was created.
It is still open.

OPEN ISSUES

💚 #337 multi-pack-index: add --no-progress, by wilbaker

NOISY ISSUE

🔈 #337 multi-pack-index: add --no-progress, by wilbaker
It received 6 comments.


PULL REQUESTS

Last week, 21 pull requests were created, updated or merged.

UPDATED PULL REQUEST

Last week, 21 pull requests were updated.
💛 #337 multi-pack-index: add --no-progress, by wilbaker
💛 #335 Fix perl error "unescaped left brace in regex" for paranoid update hook, by flexarts
💛 #334 ci: install P4 from package, by szeder
💛 #332 Fix stale .gitignore change, introduced via js/visual-studio, by dscho
💛 #330 doc: small formatting fix, by camsteffen
💛 #327 Make git rebase -r's label generation more resilient, by dscho
💛 #324 upload-pack: fix race condition in t5516, by derrickstolee
💛 #323 commit-graph: emit trace2 cmd_mode for each sub-command, by garimasi514
💛 #322 banned.h: fix vsprintf warning, by andportnoy
💛 #316 [RFC] New sparse-checkout builtin and "cone" mode, by derrickstolee
💛 #315 commit-graph: add --[no-]progress to write and verify, by garimasi514
💛 #312 rebase -i: always update HEAD before rewording, by phillipwood
💛 #306 Fix a problem with PCRE2 and nedmalloc, found via Azure Pipelines, by dscho
💛 #298 trace2: clean up formatting in perf target format, by jeffhostetler
💛 #294 rebase -r: support merge strategies other than recursive, by dscho
💛 #170 git add -i: add a rudimentary version in C (supporting only status and help so far), by dscho
💛 #141 Handle worktrees at the top of a network drive, by dscho
💛 #135 mingw: handle non-ASCII PATH components correctly, by dscho
💛 #133 Teach git reset to optionally read the pathspecs from stdin, by dscho
💛 #129 Do use ALL_CFLAGS in hdr-check, by dscho
💛 #93 mingw: support UNC as file://server/share/repo, by dscho


COMMITS

Last week there were 18 commits.
🛠️ Second batch Signed-off-by: Junio C Hamano gitster@pobox.com by gitster
🛠️ Merge branch 'bc/reread-attributes-during-rebase' The "git am" based backend of "git rebase" ignored the result of updating ".gitattributes" done in one step when replaying subsequent steps. * bc/reread-attributes-during-rebase: am: reload .gitattributes after patching it path: add a function to check for path suffix by gitster
🛠️ Merge branch 'tg/t0021-racefix' A test fix. * tg/t0021-racefix: t0021: make sure clean filter runs by gitster
🛠️ Merge branch 'mp/for-each-ref-missing-name-or-email' "for-each-ref" and friends that shows refs did not protect themselves against ancient tags that did not record tagger names when asked to show "%(taggername)", which have been corrected. * mp/for-each-ref-missing-name-or-email: ref-filter: initialize empty name or email fields by gitster
🛠️ Merge branch 'sb/userdiff-dts' Device-tree files learned their own userdiff patterns. * sb/userdiff-dts: userdiff: add a builtin pattern for dts files by gitster
🛠️ Merge branch 'rs/sort-oid-array-thread-safe' Prepare get_short_oid() codepath to be thread-safe. * rs/sort-oid-array-thread-safe: sha1-name: make sort_ambiguous_oid_array() thread-safe by gitster
🛠️ Merge branch 'nd/diff-parseopt' Compilation fix. * nd/diff-parseopt: parseopt: move definition of enum parse_opt_result up by gitster
🛠️ Merge branch 'jt/diff-lazy-fetch-submodule-fix' On-demand object fetching in lazy clone incorrectly tried to fetch commits from submodule projects, while still working in the superproject, which has been corrected. * jt/diff-lazy-fetch-submodule-fix: diff: skip GITLINK when lazy fetching missing objs by gitster
🛠️ Merge branch 'ds/midx-expire-repack' Code cleanup. * ds/midx-expire-repack: packfile.h: drop extern from function declaration by gitster
🛠️ Merge branch 'cb/fetch-set-upstream' "git fetch" learned "--set-upstream" option to help those who first clone from their private fork they intend to push to, add the true upstream via "git remote add" and then "git fetch" from it. * cb/fetch-set-upstream: pull, fetch: add --set-upstream option by gitster
🛠️ Merge branch 'rs/pax-extended-header-length-fix' "git archive" recorded incorrect length in extended pax header in some corner cases, which has been corrected. * rs/pax-extended-header-length-fix: archive-tar: turn length miscalculation warning into BUG archive-tar: use size_t in strbuf_append_ext_header() archive-tar: fix pax extended header length calculation archive-tar: report wrong pax extended header length by gitster
🛠️ Merge branch 'bm/repository-layout-typofix' Typofix. * bm/repository-layout-typofix: repository-layout.txt: correct pluralization of 'object' by gitster
🛠️ Merge branch 'en/checkout-mismerge-fix' Fix a mismerge that happened in 2.22 timeframe. * en/checkout-mismerge-fix: checkout: remove duplicate code by gitster
🛠️ Merge branch 'sg/diff-indent-heuristic-non-experimental' We promoted the "indent heuristics" that decides where to split diff hunks from experimental to the default a few years ago, but some stale documentation still marked it as experimental, which has been corrected. * sg/diff-indent-heuristic-non-experimental: diff: 'diff.indentHeuristic' is no longer experimental by gitster
🛠️ Merge branch 'ds/feature-macros' A mechanism to affect the default setting for a (related) group of configuration variables is introduced. * ds/feature-macros: repo-settings: create feature.experimental setting repo-settings: create feature.manyFiles setting repo-settings: parse core.untrackedCache commit-graph: turn on commit-graph by default t6501: use 'git gc' in quiet mode repo-settings: consolidate some config settings by gitster
🛠️ Merge branch 'jk/eoo' The command line parser learned "--end-of-options" notation; the standard convention for scripters to have hardcoded set of options first on the command line, and force the command to treat end-user input as non-options, has been to use "--" as the delimiter, but that would not work for commands that use "--" as a delimiter between revs and pathspec. * jk/eoo: gitcli: document --end-of-options parse-options: allow --end-of-options as a synonym for "--" revision: allow --end-of-options to end option parsing by gitster
🛠️ Merge branch 'jk/repo-init-cleanup' Further clean-up of the initialization code. * jk/repo-init-cleanup: config: stop checking whether the_repository is NULL common-main: delay trace2 initialization t1309: use short branch name in includeIf.onbranch test by gitster
🛠️ Merge branch 'py/git-gui-do-quit' "git gui" learned to call the clean-up procedure before exiting. * py/git-gui-do-quit: git-gui: call do_quit before destroying the main window by gitster


CONTRIBUTORS

Last week there was 1 contributor.
👤 gitster


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. 📆

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions