git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2017-08-30 07:15:19 to 2017-09-05 17:13:10 UTC [more...]

tsan: t3008: hashmap_add touches size from multiple threads
 2017-09-05 17:13 UTC  (14+ messages)
` [PATCH] hashmap: address ThreadSanitizer concerns
  ` [PATCH] hashmap: add API to disable item counting when threaded

[PATCH 00/34] plug strbuf memory leaks
 2017-09-05 17:10 UTC  (55+ messages)
` [PATCH 01/34] am: release strbufs after use in detect_patch_format()
` [PATCH 02/34] am: release strbuf on error return in hg_patch_to_mail()
` [PATCH 03/34] am: release strbuf after use in safe_to_abort()
` [PATCH 04/34] check-ref-format: release strbuf after use in check_ref_format_branch()
` [PATCH 05/34] clean: release strbuf after use in remove_dirs()
` [PATCH 06/34] clone: release strbuf after use in remove_junk()
` [PATCH 07/34] commit: release strbuf on error return in commit_tree_extended()
` [PATCH 08/34] connect: release strbuf on error return in git_connect()
` [PATCH 09/34] convert: release strbuf on error return in filter_buffer_or_fd()
` [PATCH 10/34] diff: release strbuf after use in diff_summary()
` [PATCH 11/34] diff: release strbuf after use in show_rename_copy()
` [PATCH 12/34] diff: release strbuf after use in show_stats()
` [PATCH 13/34] help: release strbuf on error return in exec_man_konqueror()
` [PATCH 14/34] help: release strbuf on error return in exec_man_man()
` [PATCH 15/34] help: release strbuf on error return in exec_woman_emacs()
` [PATCH 16/34] mailinfo: release strbuf after use in handle_from()
` [PATCH 17/34] mailinfo: release strbuf on error return in handle_boundary()
` [PATCH 18/34] merge: release strbuf after use in save_state()
` [PATCH 19/34] merge: release strbuf after use in write_merge_heads()
` [PATCH 20/34] notes: release strbuf after use in notes_copy_from_stdin()
  ` [PATCH 21/34] refs: release strbuf on error return in write_pseudoref()
  ` [PATCH 22/34] remote: release strbuf after use in read_remote_branches()
  ` [PATCH 23/34] remote: release strbuf after use in migrate_file()
  ` [PATCH 24/34] remote: release strbuf after use in set_url()
  ` [PATCH 25/34] send-pack: release strbuf on error return in send_pack()
  ` [PATCH 26/34] sha1_file: release strbuf on error return in index_path()
  ` [PATCH 27/34] shortlog: release strbuf after use in insert_one_record()
` [PATCH 28/34] sequencer: release strbuf after use in save_head()
` [PATCH 30/34] userdiff: release strbuf after use in userdiff_get_textconv()
` [PATCH 29/34] transport-helper: release strbuf after use in process_connect_service()
` [PATCH 31/34] utf8: release strbuf on error return in strbuf_utf8_replace()
` [PATCH 32/34] vcs-svn: release strbuf after use in end_revision()
` [PATCH 33/34] wt-status: release strbuf after use in read_rebase_todolist()
` [PATCH 34/34] wt-status: release strbuf after use in wt_longstatus_print_tracking()

[Bug] commit-tree shouldn't append an extra newline to commit messages
 2017-09-05 17:03 UTC  (6+ messages)

Empty directories in Git: Current guidance for historical commits?
 2017-09-05 12:47 UTC 

signing commits using gpg2
 2017-09-05 13:40 UTC  (3+ messages)

[PATCH 0/10] towards clean leak-checker output
 2017-09-05 13:05 UTC  (11+ messages)
` [PATCH 01/10] test-lib: --valgrind should not override --verbose-log
` [PATCH 02/10] test-lib: set LSAN_OPTIONS to abort by default
` [PATCH 03/10] add: free leaked pathspec after add_files_to_cache()
` [PATCH 04/10] update-index: fix cache entry leak in add_one_file()
` [PATCH 05/10] config: plug user_config leak
` [PATCH 06/10] reset: make tree counting less confusing
` [PATCH 07/10] reset: free allocated tree buffers
` [PATCH 08/10] repository: free fields before overwriting them
` [PATCH 09/10] set_git_dir: handle feeding gitdir to itself
` [PATCH 10/10] add UNLEAK annotation for reducing leak false positives

[PATCH 0/20] allowing struct lock_file to be deleted
 2017-09-05 12:15 UTC  (21+ messages)
` [PATCH 01/20] write_index_as_tree: cleanup tempfile on error
` [PATCH 02/20] setup_temporary_shallow: avoid using inactive tempfile
` [PATCH 03/20] setup_temporary_shallow: move tempfile struct into function
` [PATCH 04/20] verify_signed_buffer: prefer close_tempfile() to close()
` [PATCH 05/20] always check return value of close_tempfile
` [PATCH 06/20] tempfile: do not delete tempfile on failed close
` [PATCH 07/20] lockfile: do not rollback lock "
` [PATCH 08/20] tempfile: prefer is_tempfile_active to bare access
` [PATCH 09/20] tempfile: handle NULL tempfile pointers gracefully
` [PATCH 10/20] tempfile: replace die("BUG") with BUG()
` [PATCH 11/20] tempfile: factor out activation
` [PATCH 12/20] tempfile: factor out deactivation
` [PATCH 13/20] tempfile: robustify cleanup handler
` [PATCH 14/20] tempfile: release deactivated strbufs instead of resetting
` [PATCH 15/20] tempfile: use list.h for linked list
` [PATCH 16/20] tempfile: remove deactivated list entries
` [PATCH 17/20] tempfile: auto-allocate tempfiles on heap
` [PATCH 18/20] lockfile: update lifetime requirements in documentation
` [PATCH 19/20] ref_lock: stop leaking lock_files
` [PATCH 20/20] stop leaking lock structs in some simple cases

Git in Outreachy round 15?
 2017-09-05 11:40 UTC  (3+ messages)

[PATCH] pkt-line: re-'static'-ify buffer in packet_write_fmt_1()
 2017-09-05 10:03 UTC  (31+ messages)
              ` [PATCH] config: use a static lock_file struct

[PATCH v2 2/2] refs/files-backend: fix memory leak in lock_ref_for_update
 2017-09-05 10:02 UTC  (10+ messages)
` [PATCH v3 1/3] refs/files-backend: add longer-scoped copy of string to list
` [PATCH v3 2/3] refs/files-backend: fix memory leak in lock_ref_for_update

HP-UX (git-2.14.0) Depot File / Source Code Build throws SHA1 Error
 2017-09-05  2:20 UTC  (4+ messages)

[PATCH] read-cache: fix index corruption with index v4
 2017-09-04 22:58 UTC 

[PATCH] refs: make sure we never pass NULL to hashcpy
 2017-09-04 20:05 UTC 

[PATCHv2] pull: honor submodule.recurse config option
 2017-09-04  6:31 UTC 

Bug report
 2017-09-02  8:49 UTC  (6+ messages)

[PATCH] doc/for-each-ref: explicitly specify option names
 2017-09-02  2:03 UTC  (5+ messages)

Commit dropped when swapping commits with rebase -i -p
 2017-09-02  0:04 UTC  (7+ messages)

[RFC 0/7] transitioning to protocol v2
 2017-09-01 23:20 UTC  (15+ messages)
` [RFC 5/7] http: send Git-Protocol-Version header
` [RFC 7/7] upload-pack: ack version 2

git-scm pages deliver outdated Git docs
 2017-09-01 22:10 UTC  (3+ messages)

[PATCH 00/12] Clean up notes-related code around `load_subtree()`
 2017-09-01 21:53 UTC  (6+ messages)
` [PATCH 02/12] load_subtree(): remove unnecessary conditional

submodule: --recurse-submodules vs. submodule.recurse=true
 2017-09-01 18:15 UTC  (5+ messages)
` [PATCH] pull: honor submodule.recurse config option

[PATCH 0/1] Add stash entry count summary to short status output
 2017-09-01  3:11 UTC  (4+ messages)

[PATCH 0/3] merge-recursive: replace string_list with hashmap
 2017-08-31 18:12 UTC  (5+ messages)
` [PATCH 2/3] merge-recursive: remove return value from get_files_dirs

Cannot checkout after setting the eol attribute
 2017-08-31 14:33 UTC  (9+ messages)
` [PATCH] Documentation: mention that `eol` can change the dirty status of paths
` [PATCH v2] "
` [PATCH v3] "

[PATCH] commit & merge: modularize the empty message validator
 2017-08-31 13:36 UTC  (4+ messages)
` [PATCH v2/RFC] commit: change the meaning of an empty commit message

Produce contents of index with existing directory as cache
 2017-08-31  9:58 UTC  (5+ messages)

[PATCH 00/10] Implement transactions for the packed ref store
 2017-08-31  3:42 UTC  (4+ messages)
` [PATCH 07/10] t1404: demonstrate two problems with reference transactions

[PATCH 00/39] per-repository object store, part 1
 2017-08-30 23:07 UTC  (11+ messages)
` [PATCH 01/39] pack: make packed_git_mru global a value instead of a pointer
` [PATCH 07/39] sha1_file: add repository argument to alt_odb_usable
` [PATCH 35/39] pack: allow stat_sha1_file to handle arbitrary repositories
` [PATCH 36/39] pack: allow open_sha1_file "
` [PATCH 37/39] pack: allow map_sha1_file_1 "
` [PATCH 38/39] pack: allow map_sha1_file "
` [PATCH 39/39] pack: allow sha1_loose_object_info "

[PATCH] name-rev: change ULONG_MAX to TIME_MAX
 2017-08-30 20:23 UTC  (2+ messages)

[PATCH v5 00/40] Add initial experimental external ODB support
 2017-08-30 14:15 UTC  (6+ messages)
` [PATCH v5 35/40] Add Documentation/technical/external-odb.txt

[RFC PATCH 0/7] Implement ref namespaces as a ref storage backend
 2017-08-30 13:17 UTC  (3+ messages)


Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).