We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Here's the Weekly Digest for gitgitgadget/git:
Last week 10 issues were created. Of these, 0 issues have been closed and 10 issues are still open.
💚 #376 [guitool] feature to specify keyboard shortcuts for custom tools, by harish2704 💚 #375 gitk: Addressing error running on MacOS with large repos., by axbannaz 💚 #374 Fix incorrectly reported line numbers when running git am, by Denton-L 💚 #373 Avoid segmentation fault in git range-diff when diff.noprefix=true, by dscho 💚 #372 fsmonitor: don't fill bitmap with entries to be removed, by wilbaker 💚 #371 Teach git apply to provide more descriptive error messages, by Denton-L 💚 #370 gitignore: ignore comments on the same line as a pattern, by cbzehner 💚 #369 fetch --multiple: respect --jobs=, by dscho 💚 #368 Include hdr-check in the CI builds, by dscho 💚 #367 doc: Add a note about ~/.zsh/_git file, by mbelsky
git am
git range-diff
diff.noprefix=true
hdr-check
👍 #371 Teach git apply to provide more descriptive error messages, by Denton-L It received 👍 x1, 😄 x0, 🎉 x0 and ❤️ x0.
🔈 #369 fetch --multiple: respect --jobs=, by dscho It received 10 comments.
Last week, 14 pull requests were created, updated or merged.
Last week, 14 pull requests were updated. 💛 #376 [guitool] feature to specify keyboard shortcuts for custom tools, by harish2704 💛 #375 gitk: Addressing error running on MacOS with large repos., by axbannaz 💛 #372 fsmonitor: don't fill bitmap with entries to be removed, by wilbaker 💛 #370 gitignore: ignore comments on the same line as a pattern, by cbzehner 💛 #368 Include hdr-check in the CI builds, by dscho 💛 #367 doc: Add a note about ~/.zsh/_git file, by mbelsky 💛 #361 git-gui: respect core.hooksPath, falling back to .git/hooks, by dscho 💛 #360 git-gui (Windows): use git-bash.exe if it is available, by dscho 💛 #358 git-gui: GIT_ASK_YESNO/GIT_ASKPASS patches from Git for Windows, by dscho 💛 #337 multi-pack-index: add --no-progress, by wilbaker 💛 #324 upload-pack: fix race condition in t5516, by derrickstolee 💛 #306 Fix a problem with PCRE2 and nedmalloc, found via Azure Pipelines, by dscho 💛 #271 refactor: rename is_directory() to dir_exists() and use it in clone.c, by johnlinp 💛 #264 Adding git-ignore command, tests, and documentation., by tstone2077
Last week there were 34 commits. 🛠️ Fourth batch Signed-off-by: Junio C Hamano [email protected] by gitster 🛠️ Merge branch 'ds/commit-graph-on-fetch' A configuration variable tells "git fetch" to write the commit graph after finishing. * ds/commit-graph-on-fetch: fetch: add fetch.writeCommitGraph config setting by gitster 🛠️ Merge branch 'bw/rebase-autostash-keep-current-branch' "git rebase --autostash ", when is different from the current branch, incorrectly moved the tip of the current branch, which has been corrected. * bw/rebase-autostash-keep-current-branch: builtin/rebase.c: Remove pointless message builtin/rebase.c: make sure the active branch isn't moved when autostashing by gitster 🛠️ Merge branch 'ds/include-exclude' The internal code originally invented for ".gitignore" processing got reshuffled and renamed to make it less tied to "excluding" and stress more that it is about "matching", as it has been reused for things like sparse checkout specification that want to check if a path is "included". * ds/include-exclude: unpack-trees: rename 'is_excluded_from_list()' treewide: rename 'exclude' methods to 'pattern' treewide: rename 'EXCL_FLAG_' to 'PATTERN_FLAG_' treewide: rename 'struct exclude_list' to 'struct pattern_list' treewide: rename 'struct exclude' to 'struct path_pattern' by gitster 🛠️ Merge branch 'jh/trace2-pretty-output' Output from trace2 subsystem is formatted more prettily now. * jh/trace2-pretty-output: trace2: cleanup whitespace in perf format trace2: cleanup whitespace in normal format quote: add sq_append_quote_argv_pretty() trace2: trim trailing whitespace in normal format error message trace2: remove dead code in maybe_add_string_va() trace2: trim whitespace in region messages in perf target format trace2: cleanup column alignment in perf target format by gitster 🛠️ Merge branch 'dl/rebase-i-keep-base' "git rebase --keep-base " tries to find the original base of the topic being rebased and rebase on top of that same base, which is useful when running the "git rebase -i" (and its limited variant "git rebase -x"). The command also has learned to fast-forward in more cases where it can instead of replaying to recreate identical commits. * dl/rebase-i-keep-base: rebase: teach rebase --keep-base rebase tests: test linear branch topology rebase: fast-forward --fork-point in more cases rebase: fast-forward --onto in more cases rebase: refactor can_fast_forward into goto tower t3432: test for --no-ff's interaction with fast-forward t3432: distinguish "noop-same" v.s. "work-same" in "same head" tests t3432: test rebase fast-forward behavior t3431: add rebase --fork-point tests by gitster 🛠️ Merge branch 'sg/clean-nested-repo-with-ignored' A bug documentation. * sg/clean-nested-repo-with-ignored: t7300-clean: demonstrate deleting nested repo with an ignored file breakage by gitster 🛠️ Merge branch 'dl/complete-cherry-pick-revert-skip' The command line completion support (in contrib/) learned about the "--skip" option of "git revert" and "git cherry-pick". * dl/complete-cherry-pick-revert-skip: status: mention --skip for revert and cherry-pick completion: add --skip for cherry-pick and revert completion: merge options for cherry-pick and revert by gitster 🛠️ Merge branch 'dl/use-sq-from-test-lib' Code cleanup. * dl/use-sq-from-test-lib: t: use common $SQ variable by gitster 🛠️ Merge branch 'jk/misc-uninitialized-fixes' Various fixes to codepaths gcc 9 had trouble following dataflow. * jk/misc-uninitialized-fixes: pack-objects: drop packlist index_pos optimization test-read-cache: drop namelen variable diff-delta: set size out-parameter to 0 for NULL delta bulk-checkin: zero-initialize hashfile_checkpoint pack-objects: use object_id in packlist_alloc() git-am: handle missing "author" when parsing commit by gitster 🛠️ Merge branch 'sg/git-test-boolean' Fix an earlier regression in the test suite, which mistakenly stopped running HTTPD tests. * sg/git-test-boolean: ci: restore running httpd tests t/lib-git-svn.sh: check GIT_TEST_SVN_HTTPD when running SVN HTTP tests by gitster 🛠️ Merge branch 'rs/get-tagged-oid' Code cleanup. * rs/get-tagged-oid: use get_tagged_oid() tag: factor out get_tagged_oid() by gitster 🛠️ Merge branch 'en/filter-branch-deprecation' Start discouraging the use of "git filter-branch". * en/filter-branch-deprecation: t9902: use a non-deprecated command for testing Recommend git-filter-repo instead of git-filter-branch t6006: simplify, fix, and optimize empty message test by gitster 🛠️ Merge branch 'en/merge-options-ff-and-friends' Doc update. * en/merge-options-ff-and-friends: merge-options.txt: clarify meaning of various ff-related options by gitster 🛠️ Merge branch 'tg/push-all-in-mirror-forbidden' Fix an earlier regression to "git push --all" which should have been forbidden when the target remote repository is set to be a mirror. * tg/push-all-in-mirror-forbidden: push: disallow --all and refspecs when remote..mirror is set by gitster 🛠️ Merge branch 'dt/remote-helper-doc-re-lock-option' Doc update. * dt/remote-helper-doc-re-lock-option: clarify documentation for remote helpers by gitster 🛠️ Merge branch 'rs/help-unknown-ref-does-not-return' Code cleanup. * rs/help-unknown-ref-does-not-return: help: make help_unknown_ref() NORETURN by gitster 🛠️ Merge branch 'nd/switch-and-restore' Resurrect a performance hack. * nd/switch-and-restore: checkout: add simple check for 'git checkout -b' by gitster 🛠️ Merge branch 'tb/file-url-to-unc-path' Windows update. * tb/file-url-to-unc-path: mingw: support UNC in git clone file://server/share/repo by gitster 🛠️ Merge branch 'js/gitdir-at-unc-root' On Windows, the root level of UNC share is now allowed to be used just like any other directory. * js/gitdir-at-unc-root: setup_git_directory(): handle UNC root paths correctly Fix .git/ discovery at the root of UNC shares setup_git_directory(): handle UNC paths correctly by gitster 🛠️ Merge branch 'ar/mingw-run-external-with-non-ascii-path' Windows update. * ar/mingw-run-external-with-non-ascii-path: mingw: fix launching of externals from Unicode paths by gitster 🛠️ Merge branch 'rs/parse-tree-indirect' Code cleanup. * rs/parse-tree-indirect: tree: simplify parse_tree_indirect() by gitster 🛠️ Merge branch 'jk/fast-import-history-bugfix' The memory ownership model of the "git fast-import" got straightened out. * jk/fast-import-history-bugfix: fast-import: duplicate into history rather than passing ownership fast-import: duplicate parsed encoding string by gitster 🛠️ Merge branch 'mh/notes-duplicate-entries' A few implementation fixes in the notes API. * mh/notes-duplicate-entries: notes: avoid potential use-after-free during insertion notes: avoid leaking duplicate entries by gitster 🛠️ Merge branch 'tb/banned-vsprintf-namefix' Error message fix. * tb/banned-vsprintf-namefix: banned.h: fix vsprintf()'s ban message by gitster 🛠️ Merge branch 'mh/release-commit-memory-fix' Leakfix. * mh/release-commit-memory-fix: commit: free the right buffer in release_commit_memory by gitster 🛠️ Merge branch 'mh/http-urlmatch-cleanup' Leakfix. * mh/http-urlmatch-cleanup: http: don't leak urlmatch_config.vars by gitster 🛠️ Merge branch 'rs/strbuf-detach' Straighten out the use of strbuf_detach() API function. * rs/strbuf-detach: grep: use return value of strbuf_detach() log-tree: always use return value of strbuf_detach() by gitster 🛠️ Merge branch 'rs/trace2-dst-warning' Code cleanup. * rs/trace2-dst-warning: trace2: use warning() directly in tr2_dst_malformed_warning() by gitster 🛠️ Merge branch 'dl/format-patch-doc-test-cleanup' The documentation and tests for "git format-patch" have been cleaned up. * dl/format-patch-doc-test-cleanup: config/format.txt: specify default value of format.coverLetter Doc: add more detail for git-format-patch t4014: stop losing return codes of git commands t4014: remove confusing pipe in check_threading() t4014: use test_line_count() where possible t4014: let sed open its own files t4014: drop redirections to /dev/null t4014: use indentable here-docs t4014: remove spaces after redirect operators t4014: use sq for test case names t4014: move closing sq onto its own line t4014: s/expected/expect/ t4014: drop unnecessary blank lines from test cases by gitster 🛠️ Merge branch 'bc/hash-independent-tests-part-5' Preparation for SHA-256 upgrade continues in the test department. * bc/hash-independent-tests-part-5: t4009: make hash size independent t4002: make hash independent t4000: make hash size independent t3903: abstract away SHA-1-specific constants t3800: make hash-size independent t3600: make hash size independent t3506: make hash independent t3430: avoid hard-coded object IDs t3404: abstract away SHA-1-specific constants t3306: abstract away SHA-1-specific constants t3305: make hash size independent t3301: abstract away SHA-1-specific constants t3206: abstract away hash size constants t3201: abstract away SHA-1-specific constants by gitster 🛠️ Merge branch 'jc/test-cleanup' Code cleanup. * jc/test-cleanup: t3005: remove unused variable t: use LF variable defined in the test harness by gitster 🛠️ Merge branch 'dl/compat-cleanup' Code cleanup. * dl/compat-cleanup: compat/*.[ch]: remove extern from function declarations using spatch mingw: apply array.cocci rule by gitster 🛠️ Merge branch 'js/visual-studio' Adjust .gitignore to unignore a path that we started to track. * js/visual-studio: .gitignore: stop ignoring .manifest files by gitster
.manifest
Last week there was 1 contributor. 👤 gitster
Last week there was 1 stargazer. ⭐ SyntevoAlex You are the star! 🌟
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. 📆
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here's the Weekly Digest for gitgitgadget/git:
ISSUES
Last week 10 issues were created.
Of these, 0 issues have been closed and 10 issues are still open.
OPEN ISSUES
💚 #376 [guitool] feature to specify keyboard shortcuts for custom tools, by harish2704
💚 #375 gitk: Addressing error running on MacOS with large repos., by axbannaz
💚 #374 Fix incorrectly reported line numbers when running
git am
, by Denton-L💚 #373 Avoid segmentation fault in
git range-diff
whendiff.noprefix=true
, by dscho💚 #372 fsmonitor: don't fill bitmap with entries to be removed, by wilbaker
💚 #371 Teach git apply to provide more descriptive error messages, by Denton-L
💚 #370 gitignore: ignore comments on the same line as a pattern, by cbzehner
💚 #369 fetch --multiple: respect --jobs=, by dscho
💚 #368 Include
hdr-check
in the CI builds, by dscho💚 #367 doc: Add a note about ~/.zsh/_git file, by mbelsky
LIKED ISSUE
👍 #371 Teach git apply to provide more descriptive error messages, by Denton-L
It received 👍 x1, 😄 x0, 🎉 x0 and ❤️ x0.
NOISY ISSUE
🔈 #369 fetch --multiple: respect --jobs=, by dscho
It received 10 comments.
PULL REQUESTS
Last week, 14 pull requests were created, updated or merged.
UPDATED PULL REQUEST
Last week, 14 pull requests were updated.
💛 #376 [guitool] feature to specify keyboard shortcuts for custom tools, by harish2704
💛 #375 gitk: Addressing error running on MacOS with large repos., by axbannaz
💛 #372 fsmonitor: don't fill bitmap with entries to be removed, by wilbaker
💛 #370 gitignore: ignore comments on the same line as a pattern, by cbzehner
💛 #368 Include
hdr-check
in the CI builds, by dscho💛 #367 doc: Add a note about ~/.zsh/_git file, by mbelsky
💛 #361 git-gui: respect core.hooksPath, falling back to .git/hooks, by dscho
💛 #360 git-gui (Windows): use git-bash.exe if it is available, by dscho
💛 #358 git-gui: GIT_ASK_YESNO/GIT_ASKPASS patches from Git for Windows, by dscho
💛 #337 multi-pack-index: add --no-progress, by wilbaker
💛 #324 upload-pack: fix race condition in t5516, by derrickstolee
💛 #306 Fix a problem with PCRE2 and nedmalloc, found via Azure Pipelines, by dscho
💛 #271 refactor: rename is_directory() to dir_exists() and use it in clone.c, by johnlinp
💛 #264 Adding git-ignore command, tests, and documentation., by tstone2077
COMMITS
Last week there were 34 commits.
🛠️ Fourth batch Signed-off-by: Junio C Hamano [email protected] by gitster
🛠️ Merge branch 'ds/commit-graph-on-fetch' A configuration variable tells "git fetch" to write the commit graph after finishing. * ds/commit-graph-on-fetch: fetch: add fetch.writeCommitGraph config setting by gitster
🛠️ Merge branch 'bw/rebase-autostash-keep-current-branch' "git rebase --autostash ", when is different from the current branch, incorrectly moved the tip of the current branch, which has been corrected. * bw/rebase-autostash-keep-current-branch: builtin/rebase.c: Remove pointless message builtin/rebase.c: make sure the active branch isn't moved when autostashing by gitster
🛠️ Merge branch 'ds/include-exclude' The internal code originally invented for ".gitignore" processing got reshuffled and renamed to make it less tied to "excluding" and stress more that it is about "matching", as it has been reused for things like sparse checkout specification that want to check if a path is "included". * ds/include-exclude: unpack-trees: rename 'is_excluded_from_list()' treewide: rename 'exclude' methods to 'pattern' treewide: rename 'EXCL_FLAG_' to 'PATTERN_FLAG_' treewide: rename 'struct exclude_list' to 'struct pattern_list' treewide: rename 'struct exclude' to 'struct path_pattern' by gitster
🛠️ Merge branch 'jh/trace2-pretty-output' Output from trace2 subsystem is formatted more prettily now. * jh/trace2-pretty-output: trace2: cleanup whitespace in perf format trace2: cleanup whitespace in normal format quote: add sq_append_quote_argv_pretty() trace2: trim trailing whitespace in normal format error message trace2: remove dead code in maybe_add_string_va() trace2: trim whitespace in region messages in perf target format trace2: cleanup column alignment in perf target format by gitster
🛠️ Merge branch 'dl/rebase-i-keep-base' "git rebase --keep-base " tries to find the original base of the topic being rebased and rebase on top of that same base, which is useful when running the "git rebase -i" (and its limited variant "git rebase -x"). The command also has learned to fast-forward in more cases where it can instead of replaying to recreate identical commits. * dl/rebase-i-keep-base: rebase: teach rebase --keep-base rebase tests: test linear branch topology rebase: fast-forward --fork-point in more cases rebase: fast-forward --onto in more cases rebase: refactor can_fast_forward into goto tower t3432: test for --no-ff's interaction with fast-forward t3432: distinguish "noop-same" v.s. "work-same" in "same head" tests t3432: test rebase fast-forward behavior t3431: add rebase --fork-point tests by gitster
🛠️ Merge branch 'sg/clean-nested-repo-with-ignored' A bug documentation. * sg/clean-nested-repo-with-ignored: t7300-clean: demonstrate deleting nested repo with an ignored file breakage by gitster
🛠️ Merge branch 'dl/complete-cherry-pick-revert-skip' The command line completion support (in contrib/) learned about the "--skip" option of "git revert" and "git cherry-pick". * dl/complete-cherry-pick-revert-skip: status: mention --skip for revert and cherry-pick completion: add --skip for cherry-pick and revert completion: merge options for cherry-pick and revert by gitster
🛠️ Merge branch 'dl/use-sq-from-test-lib' Code cleanup. * dl/use-sq-from-test-lib: t: use common $SQ variable by gitster
🛠️ Merge branch 'jk/misc-uninitialized-fixes' Various fixes to codepaths gcc 9 had trouble following dataflow. * jk/misc-uninitialized-fixes: pack-objects: drop packlist index_pos optimization test-read-cache: drop namelen variable diff-delta: set size out-parameter to 0 for NULL delta bulk-checkin: zero-initialize hashfile_checkpoint pack-objects: use object_id in packlist_alloc() git-am: handle missing "author" when parsing commit by gitster
🛠️ Merge branch 'sg/git-test-boolean' Fix an earlier regression in the test suite, which mistakenly stopped running HTTPD tests. * sg/git-test-boolean: ci: restore running httpd tests t/lib-git-svn.sh: check GIT_TEST_SVN_HTTPD when running SVN HTTP tests by gitster
🛠️ Merge branch 'rs/get-tagged-oid' Code cleanup. * rs/get-tagged-oid: use get_tagged_oid() tag: factor out get_tagged_oid() by gitster
🛠️ Merge branch 'en/filter-branch-deprecation' Start discouraging the use of "git filter-branch". * en/filter-branch-deprecation: t9902: use a non-deprecated command for testing Recommend git-filter-repo instead of git-filter-branch t6006: simplify, fix, and optimize empty message test by gitster
🛠️ Merge branch 'en/merge-options-ff-and-friends' Doc update. * en/merge-options-ff-and-friends: merge-options.txt: clarify meaning of various ff-related options by gitster
🛠️ Merge branch 'tg/push-all-in-mirror-forbidden' Fix an earlier regression to "git push --all" which should have been forbidden when the target remote repository is set to be a mirror. * tg/push-all-in-mirror-forbidden: push: disallow --all and refspecs when remote..mirror is set by gitster
🛠️ Merge branch 'dt/remote-helper-doc-re-lock-option' Doc update. * dt/remote-helper-doc-re-lock-option: clarify documentation for remote helpers by gitster
🛠️ Merge branch 'rs/help-unknown-ref-does-not-return' Code cleanup. * rs/help-unknown-ref-does-not-return: help: make help_unknown_ref() NORETURN by gitster
🛠️ Merge branch 'nd/switch-and-restore' Resurrect a performance hack. * nd/switch-and-restore: checkout: add simple check for 'git checkout -b' by gitster
🛠️ Merge branch 'tb/file-url-to-unc-path' Windows update. * tb/file-url-to-unc-path: mingw: support UNC in git clone file://server/share/repo by gitster
🛠️ Merge branch 'js/gitdir-at-unc-root' On Windows, the root level of UNC share is now allowed to be used just like any other directory. * js/gitdir-at-unc-root: setup_git_directory(): handle UNC root paths correctly Fix .git/ discovery at the root of UNC shares setup_git_directory(): handle UNC paths correctly by gitster
🛠️ Merge branch 'ar/mingw-run-external-with-non-ascii-path' Windows update. * ar/mingw-run-external-with-non-ascii-path: mingw: fix launching of externals from Unicode paths by gitster
🛠️ Merge branch 'rs/parse-tree-indirect' Code cleanup. * rs/parse-tree-indirect: tree: simplify parse_tree_indirect() by gitster
🛠️ Merge branch 'jk/fast-import-history-bugfix' The memory ownership model of the "git fast-import" got straightened out. * jk/fast-import-history-bugfix: fast-import: duplicate into history rather than passing ownership fast-import: duplicate parsed encoding string by gitster
🛠️ Merge branch 'mh/notes-duplicate-entries' A few implementation fixes in the notes API. * mh/notes-duplicate-entries: notes: avoid potential use-after-free during insertion notes: avoid leaking duplicate entries by gitster
🛠️ Merge branch 'tb/banned-vsprintf-namefix' Error message fix. * tb/banned-vsprintf-namefix: banned.h: fix vsprintf()'s ban message by gitster
🛠️ Merge branch 'mh/release-commit-memory-fix' Leakfix. * mh/release-commit-memory-fix: commit: free the right buffer in release_commit_memory by gitster
🛠️ Merge branch 'mh/http-urlmatch-cleanup' Leakfix. * mh/http-urlmatch-cleanup: http: don't leak urlmatch_config.vars by gitster
🛠️ Merge branch 'rs/strbuf-detach' Straighten out the use of strbuf_detach() API function. * rs/strbuf-detach: grep: use return value of strbuf_detach() log-tree: always use return value of strbuf_detach() by gitster
🛠️ Merge branch 'rs/trace2-dst-warning' Code cleanup. * rs/trace2-dst-warning: trace2: use warning() directly in tr2_dst_malformed_warning() by gitster
🛠️ Merge branch 'dl/format-patch-doc-test-cleanup' The documentation and tests for "git format-patch" have been cleaned up. * dl/format-patch-doc-test-cleanup: config/format.txt: specify default value of format.coverLetter Doc: add more detail for git-format-patch t4014: stop losing return codes of git commands t4014: remove confusing pipe in check_threading() t4014: use test_line_count() where possible t4014: let sed open its own files t4014: drop redirections to /dev/null t4014: use indentable here-docs t4014: remove spaces after redirect operators t4014: use sq for test case names t4014: move closing sq onto its own line t4014: s/expected/expect/ t4014: drop unnecessary blank lines from test cases by gitster
🛠️ Merge branch 'bc/hash-independent-tests-part-5' Preparation for SHA-256 upgrade continues in the test department. * bc/hash-independent-tests-part-5: t4009: make hash size independent t4002: make hash independent t4000: make hash size independent t3903: abstract away SHA-1-specific constants t3800: make hash-size independent t3600: make hash size independent t3506: make hash independent t3430: avoid hard-coded object IDs t3404: abstract away SHA-1-specific constants t3306: abstract away SHA-1-specific constants t3305: make hash size independent t3301: abstract away SHA-1-specific constants t3206: abstract away hash size constants t3201: abstract away SHA-1-specific constants by gitster
🛠️ Merge branch 'jc/test-cleanup' Code cleanup. * jc/test-cleanup: t3005: remove unused variable t: use LF variable defined in the test harness by gitster
🛠️ Merge branch 'dl/compat-cleanup' Code cleanup. * dl/compat-cleanup: compat/*.[ch]: remove extern from function declarations using spatch mingw: apply array.cocci rule by gitster
🛠️ Merge branch 'js/visual-studio' Adjust .gitignore to unignore a path that we started to track. * js/visual-studio: .gitignore: stop ignoring
.manifest
files by gitsterCONTRIBUTORS
Last week there was 1 contributor.
👤 gitster
STARGAZERS
Last week there was 1 stargazer.
⭐ SyntevoAlex
You are the star! 🌟
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.
The text was updated successfully, but these errors were encountered: