git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2016-04-22 13:03:08 to 2016-04-24 13:39:24 UTC [more...]

[PATCH 79/83] apply: make some parsing functions static again
 2016-04-24 13:39 UTC 

[PATCH 00/83] libify apply and use lib in am
 2016-04-24 13:34 UTC  (78+ messages)
` [PATCH 01/83] builtin/apply: make gitdiff_verify_name() return void
` [PATCH 02/83] builtin/apply: avoid parameter shadowing 'p_value' global
` [PATCH 03/83] builtin/apply: avoid parameter shadowing 'linenr' global
` [PATCH 04/83] builtin/apply: avoid local variable shadowing 'len' parameter
` [PATCH 05/83] builtin/apply: extract line_by_line_fuzzy_match() from match_fragment()
` [PATCH 06/83] builtin/apply: move 'options' variable into cmd_apply()
` [PATCH 07/83] builtin/apply: introduce 'struct apply_state' to start libifying
` [PATCH 08/83] builtin/apply: move 'unidiff_zero' global into 'struct apply_state'
` [PATCH 09/83] builtin/apply: move 'check' "
` [PATCH 10/83] builtin/apply: move 'check_index' "
` [PATCH 11/83] builtin/apply: move 'apply_in_reverse' "
` [PATCH 12/83] builtin/apply: move 'apply_with_reject' "
` [PATCH 13/83] builtin/apply: move 'apply_verbosely' "
` [PATCH 14/83] builtin/apply: move 'update_index' "
` [PATCH 15/83] builtin/apply: move 'allow_overlap' "
` [PATCH 16/83] builtin/apply: move 'cached' "
` [PATCH 17/83] builtin/apply: move 'diffstat' "
` [PATCH 18/83] builtin/apply: move 'numstat' "
` [PATCH 19/83] builtin/apply: move 'summary' "
` [PATCH 20/83] builtin/apply: move 'threeway' "
` [PATCH 21/83] builtin/apply: move 'no-add' "
` [PATCH 22/83] builtin/apply: move 'unsafe_paths' "
` [PATCH 23/83] builtin/apply: move 'line_termination' "
` [PATCH 24/83] builtin/apply: move 'fake_ancestor' "
` [PATCH 25/83] builtin/apply: move 'p_context' "
` [PATCH 26/83] builtin/apply: move 'apply' "
` [PATCH 27/83] builtin/apply: move 'read_stdin' global into cmd_apply()
` [PATCH 28/83] builtin/apply: move 'patch_input_file' global into 'struct apply_state'
` [PATCH 29/83] builtin/apply: move 'limit_by_name' "
` [PATCH 30/83] builtin/apply: move 'has_include' "
` [PATCH 31/83] builtin/apply: move 'p_value' "
` [PATCH 32/83] builtin/apply: move 'p_value_known' "
` [PATCH 33/83] builtin/apply: move 'root' "
` [PATCH 34/83] builtin/apply: move 'whitespace_error' "
` [PATCH 35/83] builtin/apply: move 'whitespace_option' "
` [PATCH 36/83] builtin/apply: remove whitespace_option arg from set_default_whitespace_mode()
` [PATCH 37/83] builtin/apply: move 'squelch_whitespace_errors' into 'struct apply_state'
` [PATCH 38/83] builtin/apply: move 'applied_after_fixing_ws' "
` [PATCH 39/83] builtin/apply: move 'ws_error_action' "
` [PATCH 40/83] builtin/apply: move 'ws_ignore_action' "
` [PATCH 41/83] builtin/apply: move 'max_change' and 'max_len' "
` [PATCH 42/83] builtin/apply: move 'linenr' global "
` [PATCH 43/83] builtin/apply: move 'fn_table' "
` [PATCH 44/83] builtin/apply: move 'symlink_changes' "
` [PATCH 45/83] builtin/apply: move 'state' init into init_apply_state()
` [PATCH 46/83] builtin/apply: move 'state' check into check_apply_state()
` [PATCH 47/83] builtin/apply: move applying patches into apply_all_patches()
` [PATCH 48/83] builtin/apply: rename 'prefix_' parameter to 'prefix'
` [PATCH 49/83] builtin/apply: move 'lock_file' global into 'struct apply_state'
` [PATCH 50/83] builtin/apply: get rid of the 'newfd' global
` [PATCH 51/83] builtin/apply: make apply_patch() return -1 instead of die()ing
` [PATCH 52/83] builtin/apply: read_patch_file() "
` [PATCH 53/83] builtin/apply: make find_header() "
` [PATCH 54/83] builtin/apply: make parse_chunk() return a negative integer on error
` [PATCH 55/83] builtin/apply: make parse_single_patch() return -1 "
` [PATCH 56/83] apply: move 'struct apply_state' to apply.h
` [PATCH 57/83] builtin/apply: libify parse_whitespace_option()
` [PATCH 58/83] builtin/apply: libify parse_ignorewhitespace_option()
` [PATCH 59/83] builtin/apply: move init_apply_state() to apply.c
` [PATCH 60/83] apply: libify init_apply_state()
` [PATCH 61/83] builtin/apply: libify check_apply_state()
` [PATCH 62/83] builtin/apply: move check_apply_state() to apply.c
` [PATCH 63/83] builtin/apply: make apply_all_patches() return -1 on error
` [PATCH 64/83] builtin/apply: make parse_traditional_patch() "
` [PATCH 65/83] builtin/apply: make gitdiff_verify_name() "
` [PATCH 66/83] builtin/apply: change die_on_unsafe_path() to check_unsafe_path()
` [PATCH 67/83] builtin/apply: make build_fake_ancestor() return -1 on error
` [PATCH 68/83] builtin/apply: make remove_file() "
` [PATCH 69/83] builtin/apply: make add_conflicted_stages_file() "
` [PATCH 70/83] builtin/apply: make add_index_file() "
` [PATCH 71/83] builtin/apply: make create_file() "
` [PATCH 72/83] builtin/apply: make write_out_one_result() "
` [PATCH 73/83] builtin/apply: make write_out_results() "
` [PATCH 74/83] builtin/apply: make try_create_file() "
` [PATCH 75/83] builtin/apply: make create_one_file() "
` [PATCH 76/83] builtin/apply: rename option parsing functions
` [PATCH 77/83] apply: rename and move opt constants to apply.h

[GIT PULL] l10n updates for maint branch (2.8.2)
 2016-04-24 13:12 UTC 

0 bot for Git
 2016-04-24 13:05 UTC  (17+ messages)

[PATCH v1 0/2] git-p4: fix Git LFS pointer parsing
 2016-04-24 11:50 UTC  (2+ messages)
` [PATCH] t9824: fix broken &&-chain in a subshell

[PATCH] string_list: use string-list API in unsorted_string_list_lookup()
 2016-04-24  7:06 UTC  (2+ messages)

GSoC Project Selected | Incremental Rewrite of git bisect
 2016-04-24  6:52 UTC  (2+ messages)

[PATCH] name-rev: include taggerdate in considering the best name
 2016-04-24  6:35 UTC  (7+ messages)

[PATCH v5 0/4] Add --base option to git-format-patch to record base tree info
 2016-04-24  4:36 UTC  (10+ messages)
` [PATCH v5 2/4] format-patch: add '--base' option "
` [PATCH v5 3/4] format-patch: introduce --base=auto option

[PATCH] fast-import: implement --min-pack-size parameter
 2016-04-24  4:32 UTC  (3+ messages)
  ` [PATCH v2] fast-import: implement unpack limit

[PATCH 1/3] git reset --hard gives clean working tree
 2016-04-24  3:45 UTC  (13+ messages)
` [PATCH v6 01/10] t0027: Make more reliable
` [PATCH v6 02/10] convert: allow core.autocrlf=input and core.eol=crlf
` [PATCH v6 03/10] t0027: test cases for combined attributes
` [PATCH v6 04/10] convert.c: ident + core.autocrlf didn't work
` [PATCH v6 05/10] read-cache: factor out get_sha1_from_index() helper
` [PATCH v6 06/10] convert.c: stream and early out
` [PATCH v6 07/10] convert: unify the "auto" handling of CRLF
` [PATCH v6 08/10] convert.c: more safer crlf handling with text attribute
` [PATCH v6 09/10] t6038; use crlf on all platforms
` [PATCH v6 10/10] ce_compare_data() did not respect conversion

Allow worktree in same path with different gitdir
 2016-04-23 19:41 UTC 

铜铅精矿
 2016-04-23 18:47 UTC 

What's cooking in git.git (Apr 2016, #06; Thu, 21)
 2016-04-23 18:42 UTC  (12+ messages)

Awkward and confusing question in git --send-email
 2016-04-23 18:22 UTC 

[PATCH 0/2] git-p4: support python3 in the tests
 2016-04-23 14:13 UTC  (3+ messages)
` [PATCH 1/2] git-p4 tests: cd to testdir before running python
` [PATCH 2/2] git-p4 tests: work with python3 as well as python2

issue upgrading git from 1.8.2.1 to 2.8.0
 2016-04-23  5:22 UTC  (6+ messages)

possible bug of git stash deleting uncommitted files in corner case
 2016-04-23  3:53 UTC  (6+ messages)

[PATCH v1] travis-ci: build documentation
 2016-04-23  3:39 UTC  (4+ messages)

[PATCH] hooks: Add ability to specify where the hook directory is
 2016-04-23  0:44 UTC  (3+ messages)

make test Unexpected passes
 2016-04-22 23:16 UTC  (3+ messages)

RFC: Supporting .git/hooks/$NAME.d/* && /etc/git/hooks/$NAME.d/*
 2016-04-22 23:51 UTC 

[PATCH v2 0/6] object_id Part 3
 2016-04-22 22:02 UTC  (7+ messages)
` [PATCH v2 1/6] Introduce a get_oid function
` [PATCH v2 2/6] test-match-trees: convert to use struct object_id
` [PATCH v2 3/6] match-trees: convert shift_tree and shift_tree_by to object_id
` [PATCH v2 4/6] Convert struct name_entry to use struct object_id
` [PATCH v2 5/6] tree-walk: convert tree_entry_extract to "
` [PATCH v2 6/6] match-trees: convert several leaf functions "

[PATCH v2 0/4] rev-parse: adjust results when they should be relative
 2016-04-22 21:53 UTC  (5+ messages)
` [PATCH v2 1/4] rev-parse: fix some options when executed from subpath of main tree
` [PATCH v2 2/4] t1500-rev-parse: add tests executed from sub path of the main worktree
` [PATCH v2 3/4] t2027-worktree-list: add and adjust tests related to git-rev-parse
` [PATCH v2 4/4] t1700-split-index: add test for rev-parse --shared-index-path

[PATCH] test-lib: simplify '--option=value' parsing
 2016-04-22 20:54 UTC  (4+ messages)
  ` [PATCH v2] "

[PATCH v5 00/16] port branch.c to use ref-filter's printing options
 2016-04-22 19:04 UTC  (17+ messages)
` [PATCH v5 01/16] ref-filter: include reference to 'used_atom' within 'atom_value'
` [PATCH v5 02/16] ref-filter: implement %(if:equals=<string>) and %(if:notequals=<string>)
` [PATCH v5 03/16] ref-filter: modify "%(objectname:short)" to take length
` [PATCH v5 04/16] ref-filter: move get_head_description() from branch.c
` [PATCH v5 05/16] ref-filter: introduce format_ref_array_item()
` [PATCH v5 06/16] ref-filter: make %(upstream:track) prints "[gone]" for invalid upstreams
` [PATCH v5 07/16] ref-filter: add support for %(upstream:track,nobracket)
` [PATCH v5 08/16] ref-filter: make "%(symref)" atom work with the ':short' modifier
` [PATCH v5 09/16] ref-filter: introduce refname_atom_parser_internal()
` [PATCH v5 10/16] ref-filter: introduce symref_atom_parser() and refname_atom_parser()
` [PATCH v5 11/16] ref-filter: make remote_ref_atom_parser() use refname_atom_parser_internal()
` [PATCH v5 12/16] ref-filter: add `:dir` and `:base` options for ref printing atoms
` [PATCH v5 13/16] ref-filter: allow porcelain to translate messages in the output
` [PATCH v5 14/16] branch, tag: use porcelain output
` [PATCH v5 15/16] branch: use ref-filter printing APIs
` [PATCH v5 16/16] branch: implement '--format' option

Subtree Split Includes Commits Outside Prefix Directory
 2016-04-22 18:38 UTC 

[PATCH v8 0/6] Move PGP verification out of verify-tag
 2016-04-22 17:22 UTC  (9+ messages)
` [PATCH v8 1/6] builtin/verify-tag.c: ignore SIGPIPE in gpg-interface
` [PATCH v8 2/6] t7030: test verifying multiple tags
` [PATCH v8 3/6] verify-tag: update variable name and type
` [PATCH v8 4/6] verify-tag: prepare verify_tag for libification
` [PATCH v8 5/6] verify-tag: move tag verification code to tag.c
` [PATCH v8 6/6] tag -v: verify directly rather than exec-ing verify-tag

[PATCH 0/3] Improve the mmap() emulation on Windows
 2016-04-22 14:31 UTC  (4+ messages)
` [PATCH 1/3] win32mmap: set errno appropriately
` [PATCH 2/3] mmap(win32): avoid copy-on-write when it is unnecessary
` [PATCH 3/3] mmap(win32): avoid expensive fstat() call

history damage in linux.git
 2016-04-22 13:38 UTC  (9+ messages)

[PATCH v2 00/12] fix checking out a being-rebased branch
 2016-04-22 13:01 UTC  (3+ messages)
` [PATCH v3 00/13] nd/worktree-various-heads
  ` [PATCH v3 13/13] branch: do not rename a branch under bisect or rebase


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