git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2016-02-15 08:07:08 to 2016-02-16 13:30:48 UTC [more...]

[PATCH 00/20] Delete directories left empty after ref deletion
 2016-02-16 13:22 UTC  (13+ messages)
` [PATCH 01/20] safe_create_leading_directories_const(): preserve errno
` [PATCH 03/20] raceproof_create_file(): new function
` [PATCH 06/20] rename_tmp_log(): improve error reporting
` [PATCH 07/20] log_ref_setup(): separate code for create vs non-create
` [PATCH 09/20] log_ref_setup(): pass the open file descriptor back to the caller
` [PATCH 10/20] log_ref_write_1(): don't depend on logfile
` [PATCH 12/20] log_ref_write_1(): inline function
` [PATCH 13/20] try_remove_empty_parents(): rename parameter "name" -> "refname"
` [PATCH 14/20] try_remove_empty_parents(): don't trash argument contents
` [PATCH 17/20] delete_ref_loose(): derive loose reference path from lock
` [PATCH 19/20] try_remove_empty_parents(): teach to remove parents of reflogs, too
` [PATCH 20/20] ref_transaction_commit(): clean up empty directories

[PATCH 00/20] "git worktree move" preview
 2016-02-16 13:29 UTC  (12+ messages)
` [PATCH v2 00/26] worktree lock, move, remove and unlock
  ` [PATCH v2 01/26] usage.c: move format processing out of die_errno()
  ` [PATCH v2 02/26] usage.c: add sys_error() that prints strerror() automatically
  ` [PATCH v2 03/26] copy.c: import copy_file() from busybox
  ` [PATCH v2 04/26] copy.c: delete unused code in copy_file()
  ` [PATCH v2 05/26] copy.c: convert bb_(p)error_msg to (sys_)error
  ` [PATCH v2 06/26] copy.c: style fix
  ` [PATCH v2 07/26] copy.c: convert copy_file() to copy_dir_recursively()
  ` [PATCH v2 09/26] git-worktree.txt: keep subcommand listing in alphabetical order
  ` [PATCH v2 10/26] wrapper.c: allow to create an empty file with write_file()
  ` [PATCH v2 11/26] path.c: add git_common_path() and strbuf_git_common_path()

[PATCH v5 00/15] config: make git_config_set die on failure
 2016-02-16 12:56 UTC  (16+ messages)
` [PATCH v5 01/15] config: introduce set_or_die wrappers
` [PATCH v5 02/15] branch: report errors in tracking branch setup
` [PATCH v5 03/15] branch: die on config error when unsetting upstream
` [PATCH v5 04/15] branch: die on config error when editing branch description
` [PATCH v5 05/15] submodule: die on config error when linking modules
` [PATCH v5 06/15] submodule--helper: die on config error when cloning module
` [PATCH v5 07/15] remote: die on config error when setting URL
` [PATCH v5 08/15] remote: die on config error when setting/adding branches
` [PATCH v5 09/15] remote: die on config error when manipulating remotes
` [PATCH v5 10/15] clone: die on config error in cmd_clone
` [PATCH v5 11/15] init-db: die on config errors when initializing empty repo
` [PATCH v5 12/15] sequencer: die on config error when saving replay opts
` [PATCH v5 13/15] compat: die when unable to set core.precomposeunicode
` [PATCH v5 14/15] config: rename git_config_set to git_config_set_gently
` [PATCH v5 15/15] config: rename git_config_set_or_die to git_config_set

malloc memory corruption on merge-tree with leading newline
 2016-02-16 12:14 UTC  (6+ messages)
` [PATCH] merge_blobs: use strbuf instead of manually-sized mmfile_t

[PATCH] Implement https public key pinning
 2016-02-16 11:19 UTC  (12+ messages)
          ` [PATCH +warn] "
                    ` [PATCH +warn2] "

[PATCH v4 0/3] config: add '--sources' option to print the source of a config value
 2016-02-16  9:52 UTC  (23+ messages)
` [PATCH v4 1/3] t: do not hide Git's exit code in tests
` [PATCH v4 2/3] config: add 'type' to config_source struct that identifies config type
` [PATCH v4 3/3] config: add '--show-origin' option to print the origin of a config value

[PATCH v2 0/4] git remote improvements
 2016-02-16  9:47 UTC  (15+ messages)
` [PATCH v2 1/4] remote: use parse_config_key
` [PATCH v2 2/4] remote: simplify remote_is_configured()
` [PATCH v2 3/4] remote: actually check if remote exits
` [PATCH v2 4/4] remote: use remote_is_configured() for add and rename
` [PATCH v3 0/4] git remote improvements
  ` [PATCH v3 1/4] remote: use parse_config_key
  ` [PATCH v3 2/4] remote: simplify remote_is_configured()
  ` [PATCH v3 3/4] remote: actually check if remote exits
  ` [PATCH v3 4/4] remote: use remote_is_configured() for add and rename

git-mv ignores gitignore file
 2016-02-16  8:35 UTC 

Bug report: 'git commit --dry-run' corner case: returns error ("nothing to commit") when all conflicts resolved to HEAD
 2016-02-16  8:20 UTC  (3+ messages)
` [PATCH] wt-status.c: set commitable bit if there is a meaningful merge

[PATCH 0/2] enable "svn.pathnameencoding" on dcommit
 2016-02-16  6:33 UTC  (6+ messages)
  ` [PULL] svn pathnameencoding for git svn dcommit

[PATCH 0/18] hardening allocations against integer overflow
 2016-02-16  6:05 UTC  (36+ messages)
` [PATCH 01/18] add helpers for detecting size_t overflow
` [PATCH 02/18] tree-diff: catch integer overflow in combine_diff_path allocation
` [PATCH 03/18] harden REALLOC_ARRAY and xcalloc against size_t overflow
` [PATCH 04/18] add helpers for allocating flex-array structs
` [PATCH 05/18] convert trivial cases to ALLOC_ARRAY
` [PATCH 06/18] use xmallocz to avoid size arithmetic
` [PATCH 07/18] convert trivial cases to FLEX_ARRAY macros
` [PATCH 08/18] use st_add and st_mult for allocation size computation
` [PATCH 09/18] write_untracked_extension: use FLEX_ALLOC helper
` [PATCH 10/18] fast-import: simplify allocation in start_packfile
` [PATCH 11/18] fetch-pack: simplify add_sought_entry
` [PATCH 12/18] test-path-utils: fix normalize_path_copy output buffer size
` [PATCH 13/18] sequencer: simplify memory allocation of get_message
` [PATCH 14/18] git-compat-util: drop mempcpy compat code
` [PATCH 15/18] transport_anonymize_url: use xstrfmt
` [PATCH 16/18] diff_populate_gitlink: use a strbuf
` [PATCH 17/18] convert ewah/bitmap code to use xmalloc
` [PATCH 18/18] ewah: convert to REALLOC_ARRAY, etc

[PATCH 0/4] .gitignore, reinclude rules, take 2
 2016-02-16  1:36 UTC  (10+ messages)
` [PATCH 1/4] dir.c: fix match_pathname()
` [PATCH 2/4] dir.c: support tracing exclude
` [PATCH 3/4] dir.c: support marking some patterns already matched
` [PATCH 4/4] dir.c: don't exclude whole dir prematurely

Git Submodule auto-update
 2016-02-16  1:24 UTC 

git worktree fails to recreate existing branch even with -B
 2016-02-16  1:15 UTC  (6+ messages)
  ` [PATCH 1/2] worktree: fix "add -B"
    ` [PATCH 2/2] worktree add -B: do the checkout test before update branch

Custom merge driver with no rename detection
 2016-02-16  1:04 UTC  (8+ messages)

[PATCH] merge-recursive: option to disable renames
 2016-02-16  0:50 UTC 

git svn dcommit doesn't support --username option for file:/// urls
 2016-02-15 22:01 UTC  (5+ messages)

[PATCH] remote-curl: don't fall back to Basic auth if we haven't tried Negotiate
 2016-02-15 21:51 UTC  (10+ messages)
` [PATCH] http: add option to try authentication without username

[PATCH 0/4] git remote improvements
 2016-02-15 21:37 UTC  (15+ messages)
` [PATCH 1/4] remote: use skip_prefix
` [PATCH 2/4] remote: simplify remote_is_configured()
` [PATCH 3/4] remote: actually check if remote exits
` [PATCH 4/4] remote: use remote_is_configured() for add and rename

'Failed to create .git/index.lock'
 2016-02-15 21:34 UTC  (3+ messages)

What's cooking in git.git (Feb 2016, #04; Fri, 12)
 2016-02-15 21:26 UTC  (5+ messages)

git archive should use vendor extension in pax header
 2016-02-15 20:25 UTC  (6+ messages)

[PATCH] Disown ssh+git and git+ssh
 2016-02-15 18:16 UTC  (3+ messages)

How can I get a list of checkout history?
 2016-02-15 16:56 UTC  (2+ messages)

颞下颌关节炎
 2016-02-15 15:21 UTC 

Issues with cc-cmd
 2016-02-15 10:09 UTC  (3+ messages)

stdout vs stderr
 2016-02-15  9:59 UTC 

[PATCH v4 00/20] refs backend
 2016-02-15  9:57 UTC  (4+ messages)
` [PATCH v4 20/21] refs: add LMDB refs storage backend

[PATCH v3 0/3] config: add '--sources' option to print the source of a config value
 2016-02-15  9:41 UTC  (6+ messages)
` [PATCH v3 3/3] config: add '--show-origin' option to print the origin "

[PATCH v2 00/25] More flexibility in making shallow clones
 2016-02-15  8:15 UTC  (6+ messages)
` [PATCH v2 21/25] fetch: define shallow boundary with --shallow-exclude


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