git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2014-05-14 09:30:56 to 2014-05-15 16:06:58 UTC [more...]

[PATCH v6 00/42] Use ref transactions for all ref updates
 2014-05-15 16:06 UTC  (30+ 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
` [PATCH v6 05/42] update-ref.c: log transaction error from the update_ref
` [PATCH v6 06/42] refs.c: make update_ref_write update a strbuf on failure
` [PATCH v6 07/42] refs.c: remove the onerr argument to ref_transaction_commit
` [PATCH v6 08/42] refs.c: change ref_transaction_update() to do error checking and return status
` [PATCH v6 09/42] refs.c: change ref_transaction_create "
` [PATCH v6 10/42] refs.c: ref_transaction_delete to check for error "
` [PATCH v6 11/42] tag.c: use ref transactions when doing updates
` [PATCH v6 12/42] replace.c: use the ref transaction functions for updates
` [PATCH v6 13/42] commit.c: use ref transactions "

[PATCH 01/10] check_bindir: don't use the -a or -b option with the test command
 2014-05-15 15:58 UTC  (12+ messages)
` [PATCH 02/10] contrib/examples/git-clone.sh: "
` [PATCH 03/10] contrib/examples/git-commit.sh: "
` [PATCH 04/10] contrib/examples/git-merge.sh: "
` [PATCH 05/10] contrib/examples/git-repack.sh: "
` [PATCH 06/10] contrib/examples/git-resolve.sh: "
` [PATCH 07/10] git-bisect.sh: "
` [PATCH 08/10] git-mergetool.sh: "
` [PATCH 09/10] git-rebase--interactive.sh: "
` [PATCH 10/10] git-submodule.sh: "

[GUILT v2 00/29] Teach guilt import-commit how to create legal patch names, and more
 2014-05-15 14:29 UTC  (20+ messages)
` [GUILT v2 08/29] Added more test cases for "guilt new": empty patches
` [GUILT v2 16/29] Fix backslash handling when creating names of imported patches
` [GUILT v2 25/29] "guilt push" now fails when there are no more patches to push
` [GUILT v2 28/29] Added guilt.reusebranch configuration option

[PATCH 01/10] check_bindir: don't use the -a or -o option with the test command
 2014-05-15 14:21 UTC  (10+ messages)
` [PATCH 02/10] contrib/examples/git-clone.sh: "
` [PATCH 03/10] contrib/examples/git-commit.sh: "
` [PATCH 04/10] contrib/examples/git-merge.sh: "
` [PATCH 05/10] contrib/examples/git-repack.sh: "
` [PATCH 06/10] contrib/examples/git-resolve.sh: don't use the -a or -b "
` [PATCH 07/10] git-bisect.sh: don't use the -a or -o "
` [PATCH 08/10] git-mergetool.sh: "
` [PATCH 09/10] git-rebase--interactive.sh: "
` [PATCH 10/10] git-submodule.sh: "

[PATCH/RFC] Gitweb: Convert UTF-8 encoded file names
 2014-05-15 12:32 UTC  (6+ messages)

[PATCH] transport-helper: add trailing --
 2014-05-15  9:16 UTC  (4+ messages)

[PATCH] open_sha1_file: report "most interesting" errno
 2014-05-15  8:54 UTC 

[RFC/PATCH 0/6] build argv_array into run-command
 2014-05-15  8:41 UTC  (8+ messages)
` [PATCH 1/6] run-command: store an optional argv_array
` [PATCH 2/6] run_column_filter: use argv_array
` [PATCH 3/6] git_connect: "
` [PATCH 4/6] get_helper: use run-command's internal argv_array
` [PATCH 5/6] get_exporter: use argv_array
` [PATCH 6/6] get_importer: use run-command's internal argv_array
` [PATCH 7/6] argv-array: drop "detach" code

Please pull the patch series "use the $( ... ) construct for command substitution"
 2014-05-15  7:45 UTC  (4+ messages)

[PATCH/RFC] Always auto-gc after calling a fast-import transport
 2014-05-15  6:56 UTC  (2+ messages)

[PATCH 0/4] remote-hg: more improvements
 2014-05-15  6:03 UTC  (27+ messages)

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

[PATCH v2] contrib/subtree bugfix: Can't `add` annotated tag
 2014-05-14 22:50 UTC  (7+ messages)

[PATCH 00/31] Finish implementing ref and reflog transactions
 2014-05-14 22:13 UTC  (32+ messages)
` [PATCH 01/31] refs.c make ref_transaction_create a wrapper to ref_transaction_update
` [PATCH 02/31] refs.c: make ref_transaction_delete a wrapper for ref_transaction_update
` [PATCH 03/31] refs.c: rename the transaction functions
` [PATCH 04/31] refs.c: add a new update_type field to ref_update
` [PATCH 05/31] refs.c: add a function to append a reflog entry to a fd
` [PATCH 06/31] refs.c: add a transaction function to append a reflog entry
` [PATCH 07/31] refs.c: add a flag to allow reflog updates to truncate the log
` [PATCH 08/31] refs.c: only write reflog update if msg is non-NULL
` [PATCH 09/31] refs.c: allow multiple reflog updates during a single transaction
` [PATCH 10/31] reflog.c: use a reflog transaction when writing during expire
` [PATCH 11/31] refs.c: null terminate the string in copy_msg
` [PATCH 12/31] refs.c: track the refnames we are deleting in the transaction structure
` [PATCH 13/31] refs.c: update the list of deleted refs during _update instead of _commit
` [PATCH 14/31] refs.c: return error instead of dying when locking fails during transaction
` [PATCH 15/31] refs.c: lock the ref during _update instead of during _commit
` [PATCH 16/31] refs.c: add an error argument to create/delete/update just like commit
` [PATCH 17/31] refs.c: make _update_reflog take an error argument
` [PATCH 18/31] refs.c: return immediately from _commit if the transaction has an error
` [PATCH 19/31] tests: move tests for -z update/delete/verify to after the ref is created
` [PATCH 20/31] refs.c: check for lock conflicts already in _update
` [PATCH 21/31] refs.c allow multiple updates of the same ref in a transaction
` [PATCH 22/31] refs.c: release all remaining locks during transaction_free
` [PATCH 23/31] reflog.c: use the existing transaction to also lock and update the ref
` [PATCH 24/31] refs.c: make unlock_ref static
` [PATCH 25/31] refs.c: make close_ref static
` [PATCH 26/31] refs.c: make commit_ref static
` [PATCH 27/31] refs.c: remove the function lock_any_ref_for_update
` [PATCH 28/31] refs.c: make struct ref_lock private to refs.c
` [PATCH 29/31] refs.c: allow passing raw git_committer_info as email to _update_reflog
` [PATCH 30/31] refs.c: move ref_update and other definitions to earlier in the file
` [PATCH 31/31] refs.c: use the transaction to manage the reflog in rename_refs

Strange situation with --assume-unchanged and diff --find-copies-harder
 2014-05-14 22:13 UTC  (2+ messages)
` [PATCH] run_diff_files: do not look at uninitialized stat data

[PATCH v3] git-show: fix 'git show -s' to not add extra terminator after merge commit
 2014-05-14 22:12 UTC 

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

[PATCH v7 00/42] Use ref transactions for all ref updates
 2014-05-14 21:17 UTC  (43+ messages)
` [PATCH v7 01/42] refs.c: constify the sha arguments for ref_transaction_create|delete|update
` [PATCH v7 02/42] refs.c: allow passing NULL to ref_transaction_free
` [PATCH v7 03/42] refs.c: add a strbuf argument to ref_transaction_commit for error logging
` [PATCH v7 04/42] refs.c: make ref_update_reject_duplicates take a strbuf argument for errors
` [PATCH v7 05/42] update-ref.c: log transaction error from the update_ref
` [PATCH v7 06/42] refs.c: make update_ref_write update a strbuf on failure
` [PATCH v7 07/42] refs.c: remove the onerr argument to ref_transaction_commit
` [PATCH v7 08/42] refs.c: change ref_transaction_update() to do error checking and return status
` [PATCH v7 09/42] refs.c: change ref_transaction_create "
` [PATCH v7 10/42] refs.c: ref_transaction_delete to check for error "
` [PATCH v7 11/42] tag.c: use ref transactions when doing updates
` [PATCH v7 12/42] replace.c: use the ref transaction functions for updates
` [PATCH v7 13/42] commit.c: use ref transactions "
` [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 18/42] refs.c: free the transaction before returning when number of updates is 0
` [PATCH v7 19/42] refs.c: ref_transaction_commit should not free the transaction
` [PATCH v7 20/42] fetch.c: clear errno before calling functions that might set it
` [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)

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

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

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


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 NNTP newsgroup(s).