git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2014-05-13 13:38:30 to 2014-05-14 21:20:46 UTC [more...]

[PATCH v7 00/42] Use ref transactions for all ref updates
 2014-05-14 21:17 UTC  (29+ messages)
` [PATCH v7 10/42] refs.c: ref_transaction_delete to check for error and return status
` [PATCH v7 14/42] sequencer.c: use ref transactions for all ref updates
` [PATCH v7 15/42] fast-import.c: change update_branch to use ref transactions
` [PATCH v7 16/42] branch.c: use ref transaction for all ref updates
` [PATCH v7 17/42] refs.c: change update_ref to use a transaction
` [PATCH v7 19/42] refs.c: ref_transaction_commit should not free the transaction
` [PATCH v7 21/42] fetch.c: change s_update_ref to use a ref transaction
` [PATCH v7 22/42] fetch.c: use a single ref transaction for all ref updates
` [PATCH v7 23/42] receive-pack.c: use a reference transaction for updating the refs
` [PATCH v7 24/42] fast-import.c: use a ref transaction when dumping tags
` [PATCH v7 25/42] walker.c: use ref transaction for ref updates
` [PATCH v7 26/42] refs.c: make write_ref_sha1 static
` [PATCH v7 27/42] refs.c: make lock_ref_sha1 static
` [PATCH v7 28/42] refs.c: add transaction.status and track OPEN/CLOSED/ERROR
` [PATCH v7 29/42] refs.c: remove the update_ref_lock function
` [PATCH v7 30/42] refs.c: remove the update_ref_write function
` [PATCH v7 31/42] refs.c: remove lock_ref_sha1
` [PATCH v7 32/42] refs.c: make prune_ref use a transaction to delete the ref
` [PATCH v7 33/42] refs.c: make delete_ref use a transaction
` [PATCH v7 34/42] refs.c: pass the ref log message to _create/delete/update instead of _commit
` [PATCH v7 35/42] refs.c: pass NULL as *flags to read_ref_full
` [PATCH v7 36/42] refs.c: pack all refs before we start to rename a ref
` [PATCH v7 37/42] refs.c: move the check for valid refname to lock_ref_sha1_basic
` [PATCH v7 38/42] refs.c: call lock_ref_sha1_basic directly from commit
` [PATCH v7 39/42] refs.c: add a new flag for transaction delete for refs we know are packed only
` [PATCH v7 40/42] refs.c: pass a skip list to name_conflict_fn
` [PATCH v7 41/42] refs.c: make rename_ref use a transaction
` [PATCH v7 42/42] refs.c: remove forward declaration of write_ref_sha1

[PATCH] grep -I: do not bother to read known-binary files
 2014-05-14 21:15 UTC  (5+ messages)

[PATCH] contrib: remote-helpers: add move warnings (v2.0)
 2014-05-14 20:51 UTC  (14+ messages)

[PATCH v2 00/17] contrib: cleanup
 2014-05-14 20:59 UTC  (16+ messages)
` [PATCH v2 01/17] contrib: remove outdated README

[PATCH 0/4] remote-hg: more improvements
 2014-05-14 20:58 UTC  (20+ messages)

[GUILT v2 00/29] Teach guilt import-commit how to create legal patch names, and more
 2014-05-14 20:38 UTC  (55+ messages)
` [GUILT v2 01/29] The tests should not fail if guilt.diffstat is set
` [GUILT v2 02/29] Allow "guilt delete -f" to run from a dir which contains spaces
` [GUILT v2 03/29] Added test case for "guilt delete -f"
` [GUILT v2 04/29] Allow "guilt import-commit" to run from a dir which contains spaces
` [GUILT v2 05/29] "guilt new": Accept more than 4 arguments
` [GUILT v2 06/29] Fix the do_get_patch function
` [GUILT v2 07/29] Added test cases for "guilt fold"
` [GUILT v2 08/29] Added more test cases for "guilt new": empty patches
` [GUILT v2 09/29] Test suite: properly check the exit status of commands
` [GUILT v2 10/29] Run test_failed if the exit status of a test script is bad
` [GUILT v2 11/29] test suite: remove pointless redirection
` [GUILT v2 12/29] "guilt header": more robust header selection
` [GUILT v2 13/29] Check that "guilt header '.*'" fails
` [GUILT v2 14/29] Use "git check-ref-format" to validate patch names
` [GUILT v2 15/29] Produce legal patch names in guilt-import-commit
` [GUILT v2 16/29] Fix backslash handling when creating names of imported patches
` [GUILT v2 17/29] "guilt graph" no longer loops when no patches are applied
` [GUILT v2 18/29] guilt-graph: Handle commas in branch names
` [GUILT v2 19/29] Check that "guilt graph" works when working on a branch with a comma
` [GUILT v2 20/29] "guilt graph": Handle patch names containing quotes
` [GUILT v2 21/29] The log.decorate setting should not influence import-commit
` [GUILT v2 22/29] The log.decorate setting should not influence patchbomb
` [GUILT v2 23/29] The log.decorate setting should not influence guilt rebase
` [GUILT v2 24/29] disp no longer processes backslashes
` [GUILT v2 25/29] "guilt push" now fails when there are no more patches to push
` [GUILT v2 26/29] "guilt pop" now fails when there are no more patches to pop
` [GUILT v2 27/29] Minor testsuite fix
` [GUILT v2 28/29] Added guilt.reusebranch configuration option
` [GUILT v2 29/29] Added a short style guide, and Emacs settings

t5539 fails on ubuntu for v2.0.0-rc2
 2014-05-14 19:33 UTC  (10+ messages)

git gui error with relocated repository
 2014-05-14 19:22 UTC  (9+ messages)
        ` [GIT GUI PATCH] git-gui: use vcompare when comparing the git version

[PATCH] git grep -O -i: if the pager is 'less', pass the '-i' option
 2014-05-14 19:07 UTC  (7+ messages)

[PATCH/RFC] Gitweb: Convert UTF-8 encoded file names
 2014-05-14 18:41 UTC 

Please pull the patch series "use the $( ... ) construct for command substitution"
 2014-05-14 17:14 UTC  (2+ messages)

[PATCH v6 00/42] Use ref transactions for all ref updates
 2014-05-14 15:24 UTC  (12+ messages)
` [PATCH v6 02/42] refs.c: allow passing NULL to ref_transaction_free
` [PATCH v6 03/42] refs.c: add a strbuf argument to ref_transaction_commit for error logging
` [PATCH v6 04/42] refs.c: make ref_update_reject_duplicates take a strbuf argument for errors

Watchman support for git
 2014-05-14 10:52 UTC  (13+ messages)

[PATCH] wincred: add install target and avoid overwriting configured variables
 2014-05-14  8:49 UTC  (11+ messages)
      ` [PATCH 0/2] wincred makefile changes
        ` [PATCH 2/2] wincred: avoid overwriting configured variables

[PATCH] git format-patch --signature <string | file>
 2014-05-14  1:53 UTC  (3+ messages)

What's cooking in git.git (May 2014, #03; Tue, 13)
 2014-05-13 23:29 UTC 

[PATCH v2] contrib/subtree bugfix: Can't `add` annotated tag
 2014-05-13 23:12 UTC  (4+ messages)

Error using git-remote-hg
 2014-05-13 22:16 UTC  (13+ messages)

[GUILT 00/28] Teach guilt import-commit how create legal patch names, and more
 2014-05-13 21:35 UTC  (4+ messages)
` [GUILT 19/28] Check that "guilt graph" works when working on a branch with a comma

[BUG] git-gui regression in 2.0rcX within submodule
 2014-05-13 21:14 UTC  (3+ messages)

[PATCH] remote-hg: getbundle changed in mercurial 3.0
 2014-05-13 21:00 UTC  (5+ messages)
` [PATCH v2] "

[PATCH] contrib: completion: fix 'eread()' namespace
 2014-05-13 20:41 UTC  (2+ messages)

[PATCH v2 0/2] fix 'git show -s' to not add extra terminator after merge commit
 2014-05-13 20:15 UTC  (7+ messages)
` [PATCH v2 1/2] git-show: "
` [PATCH v2 2/2] t: git-show: adapt tests to fixed 'git show'

Bash prompt "namespace" issue
 2014-05-13 18:52 UTC  (2+ messages)

[PATCH] Documentation: mention config sources for @{upstream}
 2014-05-13 18:46 UTC 

[PATCH v1 0/2] Remove foreign SCMs
 2014-05-13 18:25 UTC  (10+ messages)
` [PATCH v1 1/2] Remove 'git archimport'

[PATCH 00/32] Split index mode for very large indexes
 2014-05-13 14:35 UTC  (12+ messages)
` [PATCH 0/8] Speed up cache loading time
  ` [PATCH 2/3] Add read-cache--daemon


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