messages from 2014-06-16 16:52:37 to 2014-06-17 17:23:37 UTC [more...]
[PATCH v17 00/48] Use ref transactions
2014-06-17 17:23 UTC (53+ messages)
` [PATCH v17 01/48] refs.c: remove ref_transaction_rollback
` [PATCH v17 02/48] refs.c: ref_transaction_commit should not free the transaction
` [PATCH v17 03/48] refs.c: constify the sha arguments for ref_transaction_create|delete|update
` [PATCH v17 04/48] refs.c: allow passing NULL to ref_transaction_free
` [PATCH v17 05/48] refs.c: add a strbuf argument to ref_transaction_commit for error logging
` [PATCH v17 06/48] lockfile.c: add a new public function unable_to_lock_message
` [PATCH v17 07/48] lockfile.c: make lock_file return a meaningful errno on failurei
` [PATCH v17 08/48] refs.c: add an err argument to repack_without_refs
` [PATCH v17 09/48] refs.c: make sure log_ref_setup returns a meaningful errno
` [PATCH v17 10/48] refs.c: verify_lock should set errno to something meaningful
` [PATCH v17 11/48] refs.c: make remove_empty_directories alwasy set errno to something sane
` [PATCH v17 12/48] refs.c: commit_packed_refs to return a meaningful errno on failure
` [PATCH v17 13/48] refs.c: make resolve_ref_unsafe set errno to something meaningful on error
` [PATCH v17 14/48] refs.c: log_ref_write should try to return meaningful errno
` [PATCH v17 15/48] refs.c: make ref_update_reject_duplicates take a strbuf argument for errors
` [PATCH v17 16/48] refs.c: add an err argument to delete_ref_loose
` [PATCH v17 17/48] refs.c: make update_ref_write update a strbuf on failure
` [PATCH v17 18/48] update-ref: use err argument to get error from ref_transaction_commit
` [PATCH v17 19/48] refs.c: remove the onerr argument to ref_transaction_commit
` [PATCH v17 20/48] refs.c: change ref_transaction_update() to do error checking and return status
` [PATCH v17 21/48] refs.c: change ref_transaction_create "
` [PATCH v17 22/48] refs.c: update ref_transaction_delete to check for error "
` [PATCH v17 23/48] refs.c: make ref_transaction_begin take an err argument
` [PATCH v17 24/48] refs.c: add transaction.status and track OPEN/CLOSED/ERROR
` [PATCH v17 25/48] tag.c: use ref transactions when doing updates
` [PATCH v17 26/48] replace.c: use the ref transaction functions for updates
` [PATCH v17 27/48] commit.c: use ref transactions "
` [PATCH v17 28/48] sequencer.c: use ref transactions for all ref updates
` [PATCH v17 29/48] fast-import.c: change update_branch to use ref transactions
` [PATCH v17 30/48] branch.c: use ref transaction for all ref updates
` [PATCH v17 31/48] refs.c: change update_ref to use a transaction
` [PATCH v17 32/48] receive-pack.c: use a reference transaction for updating the refs
` [PATCH v17 33/48] fast-import.c: use a ref transaction when dumping tags
` [PATCH v17 34/48] walker.c: use ref transaction for ref updates
` [PATCH v17 35/48] refs.c: make lock_ref_sha1 static
` [PATCH v17 36/48] refs.c: remove the update_ref_lock function
` [PATCH v17 37/48] refs.c: remove the update_ref_write function
` [PATCH v17 38/48] refs.c: remove lock_ref_sha1
` [PATCH v17 39/48] refs.c: make prune_ref use a transaction to delete the ref
` [PATCH v17 40/48] refs.c: make delete_ref use a transaction
` [PATCH v17 41/48] refs.c: pass the ref log message to _create/delete/update instead of _commit
` [PATCH v17 42/48] refs.c: pass NULL as *flags to read_ref_full
` [PATCH v17 43/48] refs.c: move the check for valid refname to lock_ref_sha1_basic
` [PATCH v17 44/48] refs.c: call lock_ref_sha1_basic directly from commit
` [PATCH v17 45/48] refs.c: pass a skip list to name_conflict_fn
` [PATCH v17 46/48] refs.c: propagate any errno==ENOTDIR from _commit back to the callers
` [PATCH v17 47/48] fetch.c: change s_update_ref to use a ref transaction
` [PATCH v17 48/48] refs.c: make write_ref_sha1 static
(unknown),
2014-06-17 17:13 UTC (2+ messages)
` [PATCH v10 1/1] refs.c: SSE2 optimizations for check_refname_component
[PATCH v5 00/11] add performance tracing facility
2014-06-17 17:11 UTC (6+ messages)
` [PATCH v5 09/11] trace: add high resolution timer function to debug performance issues
` [PATCH v5 10/11] trace: add trace_performance facility "
[PATCH 00/14] Add submodule test harness
2014-06-17 16:47 UTC (6+ messages)
` [PATCH 01/14] test-lib: add test_dir_is_empty()
` [PATCH 02/14] submodules: Add the lib-submodule-update.sh test library
[PATCH v18 00/48] Use ref transactions
2014-06-17 15:54 UTC (49+ messages)
` [PATCH v18 01/48] refs.c: remove ref_transaction_rollback
` [PATCH v18 02/48] refs.c: ref_transaction_commit should not free the transaction
` [PATCH v18 03/48] refs.c: constify the sha arguments for ref_transaction_create|delete|update
` [PATCH v18 04/48] refs.c: allow passing NULL to ref_transaction_free
` [PATCH v18 05/48] refs.c: add a strbuf argument to ref_transaction_commit for error logging
` [PATCH v18 06/48] lockfile.c: add a new public function unable_to_lock_message
` [PATCH v18 07/48] lockfile.c: make lock_file return a meaningful errno on failurei
` [PATCH v18 08/48] refs.c: add an err argument to repack_without_refs
` [PATCH v18 09/48] refs.c: make sure log_ref_setup returns a meaningful errno
` [PATCH v18 10/48] refs.c: verify_lock should set errno to something meaningful
` [PATCH v18 11/48] refs.c: make remove_empty_directories alwasy set errno to something sane
` [PATCH v18 12/48] refs.c: commit_packed_refs to return a meaningful errno on failure
` [PATCH v18 13/48] refs.c: make resolve_ref_unsafe set errno to something meaningful on error
` [PATCH v18 14/48] refs.c: log_ref_write should try to return meaningful errno
` [PATCH v18 15/48] refs.c: make ref_update_reject_duplicates take a strbuf argument for errors
` [PATCH v18 16/48] refs.c: add an err argument to delete_ref_loose
` [PATCH v18 17/48] refs.c: make update_ref_write update a strbuf on failure
` [PATCH v18 18/48] update-ref: use err argument to get error from ref_transaction_commit
` [PATCH v18 19/48] refs.c: remove the onerr argument to ref_transaction_commit
` [PATCH v18 20/48] refs.c: change ref_transaction_update() to do error checking and return status
` [PATCH v18 21/48] refs.c: change ref_transaction_create "
` [PATCH v18 22/48] refs.c: update ref_transaction_delete to check for error "
` [PATCH v18 23/48] refs.c: make ref_transaction_begin take an err argument
` [PATCH v18 24/48] refs.c: add transaction.status and track OPEN/CLOSED/ERROR
` [PATCH v18 25/48] tag.c: use ref transactions when doing updates
` [PATCH v18 26/48] replace.c: use the ref transaction functions for updates
` [PATCH v18 27/48] commit.c: use ref transactions "
` [PATCH v18 28/48] sequencer.c: use ref transactions for all ref updates
` [PATCH v18 29/48] fast-import.c: change update_branch to use ref transactions
` [PATCH v18 30/48] branch.c: use ref transaction for all ref updates
` [PATCH v18 31/48] refs.c: change update_ref to use a transaction
` [PATCH v18 32/48] receive-pack.c: use a reference transaction for updating the refs
` [PATCH v18 33/48] fast-import.c: use a ref transaction when dumping tags
` [PATCH v18 34/48] walker.c: use ref transaction for ref updates
` [PATCH v18 35/48] refs.c: make lock_ref_sha1 static
` [PATCH v18 36/48] refs.c: remove the update_ref_lock function
` [PATCH v18 37/48] refs.c: remove the update_ref_write function
` [PATCH v18 38/48] refs.c: remove lock_ref_sha1
` [PATCH v18 39/48] refs.c: make prune_ref use a transaction to delete the ref
` [PATCH v18 40/48] refs.c: make delete_ref use a transaction
` [PATCH v18 41/48] refs.c: pass the ref log message to _create/delete/update instead of _commit
` [PATCH v18 42/48] refs.c: pass NULL as *flags to read_ref_full
` [PATCH v18 43/48] refs.c: move the check for valid refname to lock_ref_sha1_basic
` [PATCH v18 44/48] refs.c: call lock_ref_sha1_basic directly from commit
` [PATCH v18 45/48] refs.c: pass a skip list to name_conflict_fn
` [PATCH v18 46/48] refs.c: propagate any errno==ENOTDIR from _commit back to the callers
` [PATCH v18 47/48] fetch.c: change s_update_ref to use a ref transaction
` [PATCH v18 48/48] refs.c: make write_ref_sha1 static
[PATCH v2 0/3] add strnncmp() function
2014-06-17 15:49 UTC (10+ messages)
` [PATCH v2 1/3] "
` [PATCH v2 2/3] tree-walk: simplify via strnncmp()
` [PATCH v2 3/3] unpack-trees: "
Our merge bases sometimes suck
2014-06-17 15:44 UTC (3+ messages)
ISO 13485
2014-06-17 15:30 UTC (4+ messages)
[PATCH v3] http: fix charset detection of extract_content_type()
2014-06-17 15:29 UTC
Is there a reason the credential cache server cowardly refuses to delete/reuse the socket file?
2014-06-17 9:45 UTC (4+ messages)
Potential bug in git client
2014-06-17 9:38 UTC (3+ messages)
[PATCH] Coding guideline for Error messages
2014-06-17 9:37 UTC (5+ messages)
` [PATCH] doc: State coding guideline for error message punctuation
[PATCH] http: fix charset detection of extract_content_type()
2014-06-17 9:31 UTC (4+ messages)
[PATCH 0/7] Second part of msysgit/unicode
2014-06-17 9:06 UTC (2+ messages)
[PATCH 0/5] submodule config lookup API
2014-06-17 8:30 UTC (10+ messages)
` [PATCH 1/5] hashmap: add enum for hashmap free_entries option
[PATCH 0/3] add strnncmp() function
2014-06-17 7:13 UTC (8+ messages)
` [PATCH 1/3] "
` [PATCH 2/3] tree-walk: simplify via strnncmp()
` [PATCH 3/3] unpack-trees: "
[PATCH v2 0/2] Git config cache & special querying api utilizing the cache
2014-06-17 5:46 UTC (9+ messages)
` [PATCH v2 1/2] string-list: Add string_list initializer helper functions
` [PATCH v2 2/2] config: Add hashtable for config parsing & retrieval
[PATCH/RFC] alias.c: Replace git_config with git_config_get_string
2014-06-17 5:43 UTC (2+ messages)
[PATCH v9] refs.c: SSE2 optimizations for check_refname_component
2014-06-17 3:10 UTC
[PATCH v2] http-protocol.txt: Basic Auth is RFC 2617, not RFC 2616
2014-06-17 1:11 UTC
[PATCH] http-protocol.txt: Basic Auth is RFC 2617, not RFC 2616
2014-06-17 1:10 UTC (4+ messages)
[PATCH v8] refs.c: SSE2 optimizations for check_refname_component
2014-06-17 0:51 UTC (3+ messages)
[PATCH] pretty: avoid reading past end-of-string with "%G"
2014-06-17 0:07 UTC (10+ messages)
` [PATCH] t7510: check %G* pretty-format output
` [PATCH 0/5] --format=%G tests and fixes
` [PATCH 1/5] t7510: stop referring to master in later tests
` [PATCH 2/5] t7510: use consistent &&-chains in loop
` [PATCH 3/5] t7510: test a commit signed by an unknown key
` [PATCH 4/5] t7510: check %G* pretty-format output
` [PATCH 5/5] pretty: avoid reading past end-of-string with "%G"
[PATCH v5 0/4] commit: Add commit.verbose configuration
2014-06-16 22:25 UTC (18+ messages)
` [PATCH v5 3/4] commit test: test_set_editor in each test
` [PATCH v5 4/4] commit: Add commit.verbose configuration
[PATCH] doc git: multivar configuration parameters append to existing values
2014-06-16 21:10 UTC (7+ messages)
[PATCH 0/3] verify-commit: verify commit signatures
2014-06-16 20:39 UTC (9+ messages)
` [PATCH 3/3] verify-commit: scriptable commit signature verification
git rebase --skip stuck in a loop
2014-06-16 20:31 UTC (3+ messages)
` [PATCH] rebase--merge: fix --skip with two conflicts in a row
pre-commit hook question
2014-06-16 18:23 UTC (2+ messages)
[PATCH] gitk: use mktemp -d to avoid predictable temporary directories
2014-06-16 18:17 UTC (5+ messages)
[PATCH RFC] git-am: support any number of signatures
2014-06-16 18:06 UTC (6+ messages)
[PATCH/RFC] branch.c: Replace `git_config` with `git_config_get_string`
2014-06-16 17:49 UTC (3+ messages)
[PATCH v2 00/14] ref-transactions-reflog
2014-06-16 16:51 UTC (9+ messages)
` [PATCH v2 01/14] refs.c make ref_transaction_create a wrapper to ref_transaction_update
` [PATCH v2 02/14] refs.c: make ref_transaction_delete a wrapper for ref_transaction_update
` [PATCH v2 03/14] refs.c: rename the transaction functions
` [PATCH v2 04/14] refs.c: add a new update_type field to ref_update
` [PATCH v2 11/14] reflog.c: use a reflog transaction when writing during expire
` [PATCH v2 12/14] refs.c: rename log_ref_setup to create_reflog
` [PATCH v2 13/14] refs.c: make unlock_ref/close_ref/commit_ref static
` [PATCH v2 14/14] refs.c: remove lock_any_ref_for_update
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
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).