git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2016-05-10 12:58:18 to 2016-05-11 13:23:58 UTC [more...]

[PATCH v2 00/94] libify apply and use lib in am
 2016-05-11 13:17 UTC  (81+ messages)
` [PATCH v2 01/94] builtin/apply: make gitdiff_verify_name() return void
` [PATCH v2 02/94] builtin/apply: avoid parameter shadowing 'p_value' global
` [PATCH v2 03/94] builtin/apply: avoid parameter shadowing 'linenr' global
` [PATCH v2 04/94] builtin/apply: avoid local variable shadowing 'len' parameter
` [PATCH v2 06/94] builtin/apply: move 'options' variable into cmd_apply()
` [PATCH v2 07/94] builtin/apply: move 'read_stdin' global "
` [PATCH v2 08/94] builtin/apply: introduce 'struct apply_state' to start libifying
` [PATCH v2 09/94] builtin/apply: move 'state' init into init_apply_state()
` [PATCH v2 10/94] builtin/apply: move 'unidiff_zero' global into 'struct apply_state'
` [PATCH v2 12/94] builtin/apply: move 'check_index' "
` [PATCH v2 13/94] builtin/apply: move 'apply_in_reverse' "
` [PATCH v2 18/94] builtin/apply: move 'cached' "
` [PATCH v2 23/94] builtin/apply: move 'no_add' "
` [PATCH v2 24/94] builtin/apply: move 'unsafe_paths' "
` [PATCH v2 25/94] builtin/apply: move 'line_termination' "
` [PATCH v2 26/94] builtin/apply: move 'fake_ancestor' "
` [PATCH v2 30/94] builtin/apply: move 'limit_by_name' "
` [PATCH v2 31/94] builtin/apply: move 'has_include' "
` [PATCH v2 32/94] builtin/apply: move 'p_value' "
` [PATCH v2 33/94] builtin/apply: move 'p_value_known' "
` [PATCH v2 34/94] builtin/apply: move 'root' "
` [PATCH v2 35/94] builtin/apply: move 'whitespace_error' "
` [PATCH v2 36/94] builtin/apply: move 'whitespace_option' "
` [PATCH v2 37/94] builtin/apply: remove whitespace_option arg from set_default_whitespace_mode()
` [PATCH v2 38/94] builtin/apply: move 'squelch_whitespace_errors' into 'struct apply_state'
` [PATCH v2 39/94] builtin/apply: move 'applied_after_fixing_ws' "
` [PATCH v2 40/94] builtin/apply: move 'ws_error_action' "
` [PATCH v2 41/94] builtin/apply: move 'ws_ignore_action' "
` [PATCH v2 42/94] builtin/apply: move 'max_change' and 'max_len' "
` [PATCH v2 43/94] builtin/apply: move 'state_linenr' global "
` [PATCH v2 44/94] builtin/apply: move 'fn_table' "
` [PATCH v2 45/94] builtin/apply: move 'symlink_changes' "
` [PATCH v2 46/94] builtin/apply: move 'state' check into check_apply_state()
` [PATCH v2 47/94] builtin/apply: move applying patches into apply_all_patches()
` [PATCH v2 48/94] builtin/apply: rename 'prefix_' parameter to 'prefix'
` [PATCH v2 49/94] builtin/apply: move 'lock_file' global into 'struct apply_state'
` [PATCH v2 50/94] builtin/apply: move 'newfd' "
` [PATCH v2 51/94] builtin/apply: make apply_patch() return -1 instead of die()ing
` [PATCH v2 52/94] builtin/apply: read_patch_file() "
` [PATCH v2 53/94] builtin/apply: make find_header() "
` [PATCH v2 54/94] builtin/apply: make parse_chunk() return a negative integer on error
` [PATCH v2 55/94] builtin/apply: make parse_single_patch() return -1 "
` [PATCH v2 56/94] apply: move 'struct apply_state' to apply.h
` [PATCH v2 57/94] builtin/apply: make parse_whitespace_option() return -1 instead of die()ing
` [PATCH v2 58/94] builtin/apply: make parse_ignorewhitespace_option() "
` [PATCH v2 59/94] builtin/apply: move init_apply_state() to apply.c
` [PATCH v2 60/94] apply: make init_apply_state() return -1 instead of exit()ing
` [PATCH v2 61/94] builtin/apply: make check_apply_state() return -1 instead of die()ing
` [PATCH v2 62/94] builtin/apply: move check_apply_state() to apply.c
` [PATCH v2 63/94] builtin/apply: make apply_all_patches() return -1 on error
` [PATCH v2 64/94] builtin/apply: make parse_traditional_patch() "
` [PATCH v2 65/94] builtin/apply: make gitdiff_*() return 1 at end of header
` [PATCH v2 66/94] builtin/apply: make gitdiff_*() return -1 on error
` [PATCH v2 67/94] builtin/apply: change die_on_unsafe_path() to check_unsafe_path()
` [PATCH v2 68/94] builtin/apply: make build_fake_ancestor() return -1 on error
` [PATCH v2 69/94] builtin/apply: make remove_file() "
` [PATCH v2 70/94] builtin/apply: make add_conflicted_stages_file() "
` [PATCH v2 71/94] builtin/apply: make add_index_file() "
` [PATCH v2 72/94] builtin/apply: make create_file() "
` [PATCH v2 73/94] builtin/apply: make write_out_one_result() "
` [PATCH v2 74/94] builtin/apply: make write_out_results() "
` [PATCH v2 75/94] builtin/apply: make try_create_file() "
` [PATCH v2 76/94] builtin/apply: make create_one_file() "
` [PATCH v2 77/94] builtin/apply: rename option parsing functions
` [PATCH v2 78/94] apply: rename and move opt constants to apply.h
` [PATCH v2 80/94] apply: make some parsing functions static again
` [PATCH v2 81/94] run-command: make dup_devnull() non static
` [PATCH v2 82/94] apply: roll back index lock file in case of error
` [PATCH v2 83/94] environment: add set_index_file()
` [PATCH v2 84/94] builtin/am: use apply api in run_apply()
` [PATCH v2 85/94] write_or_die: use warning() instead of fprintf(stderr, ...)
` [PATCH v2 86/94] apply: add 'be_silent' variable to 'struct apply_state'
` [PATCH v2 87/94] apply: make 'be_silent' incomatible with 'apply_verbosely'
` [PATCH v2 88/94] apply: don't print on stdout when be_silent is set
` [PATCH v2 89/94] usage: add set_warn_routine()
` [PATCH v2 90/94] usage: add get_error_routine() and get_warn_routine()
` [PATCH v2 91/94] apply: change error_routine when be_silent is set
` [PATCH v2 92/94] am: use be_silent in 'struct apply_state' to shut up applying patches
` [PATCH v2 93/94] run-command: make dup_devnull() static again
` [PATCH v2 94/94] builtin/apply: add a cli option for be_silent

[PATCH v3 0/2] Support marking .git/ (or all files) as hidden on Windows
 2016-05-11  8:43 UTC  (5+ messages)
` [PATCH v4 "
  ` [PATCH v4 1/2] mingw: introduce the 'core.hideDotFiles' setting
  ` [PATCH v4 2/2] mingw: remove unnecessary definition

[PATCH 0/3] Introduce a perf test for interactive rebase
 2016-05-11  8:42 UTC  (12+ messages)
` [PATCH 1/3] perf: let's disable symlinks on Windows
` [PATCH 2/3] perf: make the tests work in worktrees
` [PATCH 3/3] Add a perf test for rebase -i
` [PATCH v2 0/3] Introduce a perf test for interactive rebase
  ` [PATCH v2 3/3] Add a perf test for rebase -i
  ` [PATCH v2 2/3] perf: make the tests work in worktrees
  ` [PATCH v2 1/3] perf: let's disable symlinks when they are not available

[PATCH] mingw: introduce the 'core.hideDotFiles' setting
 2016-05-11  8:40 UTC  (11+ messages)
` [PATCH v2 0/2] Support marking .git/ (or all files) as hidden on Windows
  ` [PATCH v2 1/2] mingw: introduce the 'core.hideDotFiles' setting

What's cooking in git.git (May 2016, #02; Fri, 6)
 2016-05-11  7:41 UTC  (5+ messages)

ter email Benützer
 2016-05-10 19:05 UTC 

[PATCH v7 0/3] Add support for sending additional HTTP headers (part 2)
 2016-05-11  6:57 UTC  (9+ messages)
` [PATCH v8 "
  ` [PATCH v8 1/3] tests: adjust the configuration for Apache 2.2
  ` [PATCH v8 2/3] t5551: make the test for extra HTTP headers more robust
  ` [PATCH v8 3/3] submodule: ensure that -c http.extraheader is heeded

[PATCH v2 00/12] fix checking out a being-rebased branch
 2016-05-11  6:42 UTC  (29+ messages)
` [PATCH v3 00/13] nd/worktree-various-heads
  ` [PATCH v3 05/13] worktree.c: mark current worktree
          ` [PATCH 1/7] completion: support git-worktree
            ` [PATCH 2/7] worktree.c: rewrite mark_current_worktree() to avoid strbuf
            ` [PATCH 3/7] git-worktree.txt: keep subcommand listing in alphabetical order
            ` [PATCH 4/7] worktree.c: use is_dot_or_dotdot()
            ` [PATCH 5/7] worktree.c: add clear_worktree()
            ` [PATCH 6/7] worktree: avoid 0{40}, too many zeroes, hard to read
            ` [PATCH 7/7] worktree: simplify prefixing paths
          ` [PATCH 1/5] worktree.c: add find_worktree_by_path()
            ` [PATCH 2/5] worktree.c: add is_main_worktree()
            ` [PATCH 3/5] worktree.c: add is_worktree_locked()
            ` [PATCH 4/5] worktree: add "lock" command
            ` [PATCH 5/5] worktree: add "unlock" command
  ` [PATCH v3 12/13] worktree.c: check whether branch is bisected in another worktree

[PATCH 00/25] worktree lock, move, remove and unlock
 2016-05-11  4:43 UTC  (3+ messages)
` [PATCH 24/25] worktree move: accept destination as directory

[PATCH 1/3] git reset --hard gives clean working tree
 2016-05-11  4:30 UTC  (4+ messages)
` [PATCH v9 2/6] convert.c: stream and early out

[PATCH 0/7] submodule groups
 2016-05-11  2:24 UTC  (15+ messages)
` [PATCH 1/7] submodule--helper: add valid-label-name
` [PATCH 2/7] submodule add: label submodules if asked to
` [PATCH 3/7] submodule-config: keep labels around
` [PATCH 4/7] submodule-config: check if a submodule is in a group
` [PATCH 5/7] submodule--helper module_list_compute: allow label or name arguments
` [PATCH 6/7] submodule update: learn partial initialization
` [PATCH 7/7] clone: allow specification of submodules to be cloned

wishlist; unify behavior while cloning non-bare repos over http to be in line with ssh/local
 2016-05-11  0:49 UTC  (7+ messages)

[Bug?] log -p -W showing the whole file for a patch that adds to the end?
 2016-05-10 22:51 UTC  (2+ messages)

[PATCH v9 00/19] index-helper/watchman
 2016-05-10 22:09 UTC  (14+ messages)

[PATCH 0/2] Work on t3404 in preparation for rebase--helper
 2016-05-10 22:06 UTC  (8+ messages)
` [PATCH 1/2] t3404: fix typo
` [PATCH 2/2] t3404: be resilient against running with the -x flag
        ` [PATCH] test-lib: set BASH_XTRACEFD automatically

[PATCH v2 00/33] Yet more preparation for reference backends
 2016-05-10 21:32 UTC  (2+ messages)

[PATCH 0/6] modernize t1500
 2016-05-10 21:19 UTC  (20+ messages)
` Compiler warning under cygwin/mingw (was: fix for 50a6c8e)
` [PATCH 4/6] t1500: avoid setting configuration options outside of tests
` [PATCH 5/6] t1500: avoid setting environment variables "

syntax error in git-rebase while running t34* tests
 2016-05-10 21:07 UTC  (5+ messages)

[PATCH] Move test-* to t/helper/ subdirectory
 2016-05-10 20:23 UTC  (12+ messages)

diff --break-rewrites for just a part of a file
 2016-05-10 19:16 UTC  (2+ messages)

is ORIG_HEAD allowed to point to a non-existing object?
 2016-05-10 18:14 UTC  (2+ messages)

[PATCH] Windows: only add a no-op pthread_sigmask() when needed
 2016-05-10 17:57 UTC  (2+ messages)

[PATCH v9 03/19] index-helper: new daemon for caching index and related stuff
 2016-05-10 17:19 UTC  (2+ messages)

[PATCH v3 1/2] Documentation: fix linkgit references
 2016-05-10 17:12 UTC  (4+ messages)
` [PATCH v4 0/2] travis-ci: build documentation
  ` [PATCH v4 2/2] "

t4151 missing quotes
 2016-05-10 13:48 UTC  (9+ 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).