git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2017-11-19 01:04:59 to 2017-11-21 00:45:15 UTC [more...]

[PATCH v1 0/4] Speed up index load through parallelization
 2017-11-21  0:45 UTC  (16+ messages)
` [PATCH v1 1/4] fastindex: speed "

Draft of Git Rev News edition 33
 2017-11-21  0:38 UTC  (2+ messages)

[PATCH 0/6] show non-empty lines before functions with diff/grep -W
 2017-11-21  0:37 UTC  (10+ messages)
` [PATCH 1/6] t4051: add test for comments preceding function lines
` [PATCH 6/6] grep: show non-empty lines before functions with -W

[PATCH] git-rebase: clean up dashed-usages in messages
 2017-11-21  0:33 UTC  (6+ messages)

[PATCH] git-send-email: fix get_maintainer.pl regression
 2017-11-21  0:32 UTC  (9+ messages)

What's cooking in git.git (Nov 2017, #05; Fri, 17)
 2017-11-21  0:21 UTC  (4+ messages)

Bad interaction between git clean, gitignore, and deleted submodules
 2017-11-21  0:02 UTC 

[PATCH] Makefile: check that tcl/tk is installed
 2017-11-20 23:58 UTC  (4+ messages)

[PATCH 0/5] avoiding pointless pack-directory re-scans
 2017-11-20 23:55 UTC  (9+ messages)
` [PATCH 1/5] p5550: factor our nonsense-pack creation
` [PATCH 2/5] t/perf/lib-pack: use fast-import checkpoint to create packs
` [PATCH 3/5] p5551: add a script to test fetch pack-dir rescans
` [PATCH 4/5] everything_local: use "quick" object existence check
` [PATCH 5/5] sha1_file: don't re-scan pack directory for null sha1

[PATCH] list-objects-filter-options: fix up some sparse warnings
 2017-11-20 23:39 UTC 

[PATCH] bash completion: Add --autostash and --no-autostash to pull
 2017-11-20 23:14 UTC  (2+ messages)

[PATCH] git-send-email: fix --cc-cmd get_maintainer.pl regression
 2017-11-20 23:04 UTC  (2+ messages)

[PATCH v2 0/1] exec_cmd: RUNTIME_PREFIX on some POSIX systems
 2017-11-20 22:46 UTC  (7+ messages)
` [PATCH 1/1] "
    ` Re(2): "

[PATCH v3 0/8] Coping with unrecognized ssh wrapper scripts in GIT_SSH
 2017-11-20 22:32 UTC  (19+ messages)
` [PATCH 1/8] ssh test: make copy_ssh_wrapper_as clean up after itself
` [PATCH 2/8] connect: move no_fork fallback to git_tcp_connect
` [PATCH 3/8] connect: split git:// setup into a separate function
` [PATCH 4/8] connect: split ssh command line options into "
    ` [PATCH v4 "
` [PATCH 5/8] connect: split ssh option computation to its own function
` [PATCH 6/8] ssh: 'auto' variant to select between 'ssh' and 'simple'
` [PATCH 7/8] ssh: 'simple' variant does not support -4/-6
` [PATCH 8/8] ssh: 'simple' variant does not support --port

[PATCH 0/1] Teaching the diff machinery about blobfind [WAS: git describe <blob>]
 2017-11-20 22:25 UTC  (2+ messages)
` [PATCH 1/1] diffcore: add a filter to find a specific blob

[RFC PATCH v2 0/9] Improve merge recursive performance
 2017-11-20 22:19 UTC  (10+ messages)
` [RFC PATCH v2 1/9] diffcore-rename: no point trying to find a match better than exact
` [RFC PATCH v2 2/9] merge-recursive: avoid unnecessary string list lookups
` [RFC PATCH v2 3/9] merge-recursive: new function for better colliding conflict resolutions
` [RFC PATCH v2 4/9] Add testcases for improved file collision conflict handling
` [RFC PATCH v2 5/9] merge-recursive: fix rename/add "
` [RFC PATCH v2 6/9] merge-recursive: improve handling for rename/rename(2to1) conflicts
` [RFC PATCH v2 7/9] merge-recursive: improve handling for add/add conflicts
` [RFC PATCH v2 8/9] merge-recursive: accelerate rename detection
` [RFC PATCH v2 9/9] diffcore-rename: filter rename_src list when possible

[PATCH v2 00/33] Add directory rename detection to git
 2017-11-20 22:02 UTC  (34+ messages)
` [PATCH v2 01/33] Tighten and correct a few testcases for merging and cherry-picking
` [PATCH v2 02/33] merge-recursive: fix logic ordering issue
` [PATCH v2 03/33] merge-recursive: add explanation for src_entry and dst_entry
` [PATCH v2 04/33] directory rename detection: basic testcases
` [PATCH v2 05/33] directory rename detection: directory splitting testcases
` [PATCH v2 06/33] directory rename detection: testcases to avoid taking detection too far
` [PATCH v2 07/33] directory rename detection: partially renamed directory testcase/discussion
` [PATCH v2 08/33] directory rename detection: files/directories in the way of some renames
` [PATCH v2 09/33] directory rename detection: testcases checking which side did the rename
` [PATCH v2 10/33] directory rename detection: more involved edge/corner testcases
` [PATCH v2 11/33] directory rename detection: testcases exploring possibly suboptimal merges
` [PATCH v2 12/33] directory rename detection: miscellaneous testcases to complete coverage
` [PATCH v2 13/33] directory rename detection: tests for handling overwriting untracked files
` [PATCH v2 14/33] directory rename detection: tests for handling overwriting dirty files
` [PATCH v2 15/33] merge-recursive: move the get_renames() function
` [PATCH v2 16/33] merge-recursive: introduce new functions to handle rename logic
` [PATCH v2 17/33] merge-recursive: fix leaks of allocated renames and diff_filepairs
` [PATCH v2 18/33] merge-recursive: make !o->detect_rename codepath more obvious
` [PATCH v2 19/33] merge-recursive: split out code for determining diff_filepairs
` [PATCH v2 20/33] merge-recursive: add a new hashmap for storing directory renames
` [PATCH v2 21/33] merge-recursive: add get_directory_renames()
` [PATCH v2 22/33] merge-recursive: check for directory level conflicts
` [PATCH v2 23/33] merge-recursive: add a new hashmap for storing file collisions
` [PATCH v2 24/33] merge-recursive: add computation of collisions due to dir rename & merging
` [PATCH v2 25/33] merge-recursive: check for file level conflicts then get new name
` [PATCH v2 26/33] merge-recursive: when comparing files, don't include trees
` [PATCH v2 27/33] merge-recursive: apply necessary modifications for directory renames
` [PATCH v2 28/33] merge-recursive: avoid clobbering untracked files with "
` [PATCH v2 29/33] merge-recursive: fix overwriting dirty files involved in renames
` [PATCH v2 30/33] merge-recursive: fix remaining directory rename + dirty overwrite cases
` [PATCH v2 31/33] directory rename detection: new testcases showcasing a pair of bugs
` [PATCH v2 32/33] merge-recursive: avoid spurious rename/rename conflict from dir renames
` [PATCH v2 33/33] merge-recursive: ensure we write updates for directory-renamed file

[PATCH V3] config: add --expiry-date
 2017-11-20 20:37 UTC  (7+ messages)
` [PATCH V4] "

[PATCH] sequencer: make sign_off_header a file local symbol
 2017-11-20 20:27 UTC 

t3512 & t3513 'unexpected passes'
 2017-11-20 20:16 UTC 

(no subject)
 2017-11-20 20:07 UTC  (2+ messages)
` 

[PATCH] contrib/git-jump: allow to configure the grep command
 2017-11-20 19:55 UTC  (5+ messages)

[RFC PATCH] rebisect: add script for easier bisect log editing
 2017-11-20 18:24 UTC  (4+ messages)
` [RFC PATCH v2 0/2] bisect: add a single command for editing logs
` [RFC PATCH v2 1/2] bisect: split out replay file parsing
` [RFC PATCH v2 2/2] bisect: add "edit" command

[RFC PATCH 0/3] git-describe <blob> ?
 2017-11-20 18:18 UTC  (17+ messages)
` [PATCH 0/7] git-describe <blob>
  ` [PATCH 6/7] builtin/describe.c: describe a blob

[PATCH] Makefile: check that tcl/tk is installed
 2017-11-20 18:12 UTC  (7+ messages)

[PATCH v2 1/6] config: introduce core.printsha1ellipsis
 2017-11-20 12:25 UTC  (17+ messages)
` [PATCH 1/3] checkout: describe_detached_head: remove 3dots after committish
    ` [PATCH v2 3/6] diff: diff_aligned_abbrev: remove ellipsis after abbreviated SHA-1 value
        ` [PATCH v3 1/5] checkout: describe_detached_head: remove ellipsis after committish
        ` [PATCH v3 2/5] diff: diff_aligned_abbrev: remove ellipsis after abbreviated SHA-1 value
        ` [PATCH v3 3/5] Documentation: user-manual: limit usage of ellipsis
        ` [PATCH v3 4/5] Documentation: revisions: fix typo: "three dot" ---> "three-dot" (in line with "two-dot")
        ` [PATCH v3 5/5] Testing: provide tests requiring them with ellipses after SHA-1 values

[PATCHv5 0/7] describe blob
 2017-11-20 15:10 UTC  (3+ messages)
` [PATCHv5 7/7] builtin/describe.c: describe a blob

Add feature to stop tracking files while keeping them in the index
 2017-11-20 17:13 UTC  (2+ messages)

[PATCH v4 00/10] Partial clone part 2: fsck and promisors
 2017-11-20 15:56 UTC  (6+ messages)
` [PATCH v4 07/10] introduce fetch-object: fetch one promisor object

[PATCH] docs: checking out using @{-N} can lead to detached state
 2017-11-20 15:18 UTC  (3+ messages)

Bug/Wish: bash completion for git pull --rebase doesn't include --autostash
 2017-11-20 15:08 UTC  (3+ messages)

[PATCH v2] git-send-email: fix --cc-cmd get_maintainer.pl regression
 2017-11-20 11:44 UTC 

[PATCH v16 1/6] bisect--helper: use OPT_CMDMODE instead of OPT_BOOL
 2017-11-20  7:03 UTC  (5+ messages)
` [PATCH v16 6/6] bisect--helper: `is_expected_rev` & `check_expected_revs` shell function in C

git pull
 2017-11-20  6:04 UTC  (2+ messages)

[PATCH] Reduce performance penalty for turned off traces
 2017-11-20  4:59 UTC  (9+ messages)
` [PATCH 1/2] Simplify tracing code by removing trace key normalization concept
  ` [PATCH 2/2] Reduce performance cost of the trace if trace category is disabled

Documentation of post-receive hook
 2017-11-20  1:17 UTC  (7+ messages)

Why gc --auto is called so rarely?
 2017-11-20  0:46 UTC  (3+ messages)

[PATCH v2 1/3] checkout: factor out functions to new lib file
 2017-11-20  0:39 UTC  (9+ messages)
` [PATCH v3 0/3] make git worktree add dwim more
  ` [PATCH v3 2/3] worktree: make add <path> <branch> dwim
  ` [PATCH v3 3/3] worktree: make add <path> dwim

[PATCH v2] launch_editor(): indicate that Git waits for user input
 2017-11-20  0:11 UTC  (5+ messages)

Can @{-N} always be used where a branch name is expected?
 2017-11-19 18:09 UTC 

[RFC PATCH v3 0/4] give more useful error messages while renaming branch
 2017-11-19 18:06 UTC  (6+ messages)
` [PATCH 0/4] cleanups surrounding branch
  ` [PATCH 4/4] builtin/branch: strip refs/heads/ using skip_prefix

[PATCH 1/3] t7006: add tests for how git branch paginates
 2017-11-19 15:03 UTC  (3+ messages)
` [PATCH 2/3] branch: respect `pager.branch` in list-mode only
` [PATCH 3/3] branch: change default of `pager.branch` to "on"

Why gc --auto is called so rarely?
 2017-11-19 14:55 UTC 

[PATCH] git-pull: Pass -4/-6 option to git-fetch
 2017-11-19 14:37 UTC 

[PATCH] git-send-email: honor $PATH
 2017-11-19 12:35 UTC  (4+ messages)

[PATCH] git-pull: Pass -4/-6 option to git-fetch
 2017-11-19 11:01 UTC 

v2.15.0: commits become falsely joined when rebasing (interactively)
 2017-11-19  1:45 UTC 

[RFC] Indicate that Git waits for user input via editor
 2017-11-19  1:07 UTC  (4+ messages)
` [PATCH] launch_editor(): indicate that Git waits for user input


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