git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2014-09-29 16:41:36 to 2014-10-03 10:45:16 UTC [more...]

Compile fails on OSX 10.9 with FSF GCC in common crypto
 2014-10-03 10:41 UTC 

[TOY PATCH]: rebase: Add --show-files option
 2014-10-03  7:42 UTC  (2+ messages)

[PATCH/RFC 0/5] add "unset.variable" for unsetting previously set variables
 2014-10-03  7:01 UTC  (15+ messages)
` [PATCH/RFC 1/5] config.c : move configset_iter() to an appropriate position
` [PATCH/RFC 2/5] make git_config_with_options() to use a configset
` [PATCH/RFC 3/5] add "unset.variable" for unsetting previously set variables
` [PATCH/RFC 4/5] document the new "unset.variable" variable
` [PATCH/RFC 5/5] add tests for checking the behaviour of "unset.variable"

project wide: git config entry for [diff] renames=true
 2014-10-03  5:34 UTC  (6+ messages)
` [RFC/PATCH 0/2] Introduce safe-include config feature
  ` [RFC/PATCH 1/2] config: Add safe-include directive
  ` [RFC/PATCH 2/2] config: Add test of safe-include feature

Transaction patch series overview
 2014-10-02 19:18 UTC  (33+ messages)
        ` [PATCH v21 0/19] rs/ref-transaction (Re: Transaction patch series overview)
          ` [PATCH v22 0/24] rs/ref-transaction
            ` [PATCH 01/24] mv test: recreate mod/ directory instead of relying on stale copy
            ` [PATCH 02/24] wrapper.c: remove/unlink_or_warn: simplify, treat ENOENT as success
            ` [PATCH 03/24] wrapper.c: add a new function unlink_or_msg
            ` [PATCH 04/24] refs.c: add an err argument to delete_ref_loose
            ` [PATCH 05/24] refs.c: pass the ref log message to _create/delete/update instead of _commit
            ` [PATCH 06/24] rename_ref: don't ask read_ref_full where the ref came from
            ` [PATCH 07/24] refs.c: refuse to lock badly named refs in lock_ref_sha1_basic
            ` [PATCH 08/24] refs.c: call lock_ref_sha1_basic directly from commit
            ` [PATCH 09/24] refs.c: pass a list of names to skip to is_refname_available
            ` [PATCH 10/24] refs.c: ref_transaction_commit: distinguish name conflicts from other errors
            ` [PATCH 11/24] fetch.c: change s_update_ref to use a ref transaction
            ` [PATCH 12/24] refs.c: make write_ref_sha1 static
            ` [PATCH 13/24] refs.c: change resolve_ref_unsafe reading argument to be a flags field
            ` [PATCH 14/24] reflog test: test interaction with detached HEAD
            ` [PATCH 15/24] branch -d: avoid repeated symref resolution
            ` [PATCH 16/24] branch -d: simplify by using RESOLVE_REF_READING flag
            ` [PATCH 17/24] packed-ref cache: forbid dot-components in refnames
            ` [PATCH 18/24] test: put tests for handling of bad ref names in one place
            ` [PATCH 19/24] refs.c: allow listing and deleting badly named refs
            ` [PATCH 20/24] for-each-ref.c: improve message before aborting on broken ref
            ` [PATCH 21/24] remote rm/prune: print a message when writing packed-refs fails
            ` [PATCH 22/24] refs.c: do not permit err == NULL
            ` [PATCH 23/24] lockfile: remove unable_to_lock_error
            ` [PATCH 24/24] ref_transaction_commit: bail out on failure to remove a ref

$GIT_CONFIG should either apply to all commands, or none at all
 2014-10-02 17:51 UTC  (3+ messages)

What's cooking in git.git (Sep 2014, #09; Tue, 30)
 2014-10-02 17:46 UTC  (5+ messages)

Can I fetch an arbitrary commit by sha1?
 2014-10-02 17:35 UTC  (4+ messages)

[PATCH] init - Honour the global core.filemode setting
 2014-10-02 17:02 UTC  (6+ messages)

Failing tests in t0027-autocrlf.sh under msysgit/git-win-sdk
 2014-10-02 14:14 UTC  (3+ messages)

[PATCH 0/3] Support stdio access to lockfiles
 2014-10-02  9:29 UTC  (8+ messages)
` [PATCH 1/3] fdopen_lock_file(): access a lockfile using stdio
` [PATCH 2/3] dump_marks(): reimplement using fdopen_lock_file()
` [PATCH 3/3] commit_packed_refs(): "

Concurrent fetches and pushes
 2014-10-01 21:51 UTC 

Can you git clone -partial? I am looking to make a mobile app and it would be nice to have
 2014-10-01 21:32 UTC  (3+ messages)

[PATCH v7 00/38] Lockfile correctness and refactoring
 2014-10-01 21:05 UTC  (43+ messages)
` [PATCH v7 01/38] unable_to_lock_die(): rename function from unable_to_lock_index_die()
` [PATCH v7 02/38] api-lockfile: revise and expand the documentation
` [PATCH v7 03/38] close_lock_file(): exit (successfully) if file is already closed
` [PATCH v7 04/38] rollback_lock_file(): do not clear filename redundantly
` [PATCH v7 05/38] rollback_lock_file(): exit early if lock is not active
` [PATCH v7 06/38] rollback_lock_file(): set fd to -1
` [PATCH v7 07/38] lockfile: unlock file if lockfile permissions cannot be adjusted
` [PATCH v7 08/38] hold_lock_file_for_append(): release lock on errors
` [PATCH v7 09/38] lock_file(): always initialize and register lock_file object
` [PATCH v7 10/38] lockfile.c: document the various states of lock_file objects
` [PATCH v7 11/38] cache.h: define constants LOCK_SUFFIX and LOCK_SUFFIX_LEN
` [PATCH v7 12/38] delete_ref_loose(): don't muck around in the lock_file's filename
` [PATCH v7 13/38] prepare_index(): declare return value to be (const char *)
` [PATCH v7 14/38] lock_file(): exit early if lockfile cannot be opened
` [PATCH v7 15/38] remove_lock_file(): call rollback_lock_file()
` [PATCH v7 16/38] commit_lock_file(): inline temporary variable
` [PATCH v7 17/38] commit_lock_file(): die() if called for unlocked lockfile object
` [PATCH v7 18/38] close_lock_file(): if close fails, roll back
` [PATCH v7 19/38] commit_lock_file(): rollback lock file on failure to rename
` [PATCH v7 20/38] api-lockfile: document edge cases
` [PATCH v7 21/38] dump_marks(): remove a redundant call to rollback_lock_file()
` [PATCH v7 22/38] git_config_set_multivar_in_file(): avoid "
` [PATCH v7 23/38] lockfile: avoid transitory invalid states
` [PATCH v7 24/38] struct lock_file: declare some fields volatile
` [PATCH v7 25/38] try_merge_strategy(): remove redundant lock_file allocation
` [PATCH v7 26/38] try_merge_strategy(): use a statically-allocated lock_file object
` [PATCH v7 27/38] commit_lock_file(): use a strbuf to manage temporary space
` [PATCH v7 28/38] Change lock_file::filename into a strbuf
` [PATCH v7 29/38] resolve_symlink(): use a strbuf for internal scratch space
` [PATCH v7 30/38] resolve_symlink(): take a strbuf parameter
` [PATCH v7 31/38] trim_last_path_component(): replace last_path_elm()
` [PATCH v7 32/38] Extract a function commit_lock_file_to()
` [PATCH v7 33/38] Rename LOCK_NODEREF to LOCK_NO_DEREF
` [PATCH v7 34/38] lockfile.c: rename static functions
` [PATCH v7 35/38] get_locked_file_path(): new function
` [PATCH v7 36/38] hold_lock_file_for_append(): restore errno before returning
` [PATCH v7 37/38] Move read_index() definition to read-cache.c
` [PATCH v7 38/38] lockfile.h: extract new header file for the functions in lockfile.c

[PATCH 1/3] daemon: handle gethostbyname() error
 2014-10-01 20:35 UTC  (4+ messages)
` [PATCH 2/3] daemon: fix error message after bind()
  ` [PATCH 3/3] daemon: remove write-only variable maxfd

[PATCH] git-prompt.sh: shorter equal upstream branch name
 2014-10-01 17:49 UTC  (6+ messages)

[PATCH v2 00/32] nd/multiple-work-trees
 2014-10-01 16:20 UTC  (6+ messages)
` [PATCH v3 "
  ` [PATCH v3 19/32] setup.c: support multi-checkout repo setup
  ` [PATCH v3 23/32] prune: strategies for linked checkouts

[PATCH v2 1/2] sha1-array: add test-sha1-array and basic tests
 2014-10-01 15:19 UTC  (3+ messages)
` [PATCH v2 2/2] sha1-lookup: handle duplicates in sha1_pos()

[PATCH 1/2] sha1-array: add test-sha1-array and basic tests
 2014-10-01 14:23 UTC  (9+ messages)
` [PATCH 2/2] sha1-lookup: fix handling of duplicates in sha1_pos()

[PATCH v6 00/39] Lockfile correctness and refactoring
 2014-10-01  8:11 UTC  (17+ messages)
` [PATCH v6 02/39] api-lockfile: revise and expand the documentation
` [PATCH v6 27/39] try_merge_strategy(): use a statically-allocated lock_file object

[PATCH] docs/git-mailinfo: Mention the manual separator (---)
 2014-09-30 22:37 UTC  (4+ messages)

[ANNOUNCE] Git v2.1.2
 2014-09-30 20:22 UTC 

Submodules and GIT_ALTERNATE_OBJECT_DIRECTORIES
 2014-09-30 13:25 UTC 

[PATCH] t0090: avoid passing empty string to printf %d
 2014-09-30 17:42 UTC 

[PATCH] Do not make trace.c/getnanotime an inlined function
 2014-09-30 15:54 UTC  (7+ messages)

`git log relative_path_to_object` does not respect the --work-tree path
 2014-09-30 12:42 UTC  (5+ messages)

[PATCH v4] MinGW(-W64) compilation
 2014-09-30 10:10 UTC  (16+ messages)
` [PATCH 01/14] MINGW: compat/mingw.h: do not attempt to redefine lseek on mingw-w64
` [PATCH 02/14] MSVC: config.mak.uname: drop -D__USE_MINGW_ACCESS from CFLAGS
` [PATCH 03/14] MINGW: compat/mingw.h: drop fork() definition
` [PATCH 04/14] MINGW: do not fail at redefining pid_t on MinGW-W64
` [PATCH 05/14] MINGW: config.mak.uname: allow using cURL for non-msysGit builds
` [PATCH 06/14] MINGW: compat/winansi.c: do not redefine CONSOLE_FONT_INFOEX
` [PATCH 07/14] Fix BASIC_LDFLAGS and COMPAT_CFLAGS for 64bit MinGW-w64
` [PATCH 08/14] MINGW: git-compat-util.h: use inttypes.h for printf macros
` [PATCH 09/14] MINGW: config.mak.uname: reorganize MinGW settings
` [PATCH 10/14] Makefile: introduce CROSS_COMPILE variable
` [PATCH 11/14] compat/nedmalloc/malloc.c.h: fix compilation under MinGW-W64
` [PATCH 12/14] Fix pointer -> integer casts on IL32P64 systems
` [PATCH 13/14] git-compat-util.h: fix integer overflow "
` [PATCH 14/14] MINGW: config.mak.uname: auto-detect MinGW build from compiler

MinGW(-W64) compilation
 2014-09-30  6:29 UTC  (4+ messages)
` [PATCH 12/14] Fix pointer -> integer casts on IL32P64 systems

Strange behavior of git rev-list --first-parent --ancesty-path
 2014-09-30  5:25 UTC 

What's cooking in git.git (Sep 2014, #08; Mon, 29)
 2014-09-29 23:47 UTC 

[PATCH v3 0/3] Make 'git help everyday' work
 2014-09-29 23:24 UTC  (4+ messages)
` [PATCH v3 1/3] doc: modernise everyday.txt wording and format in man page style
` [PATCH v3 3/3] Make 'git help everyday' work

[BUG] (git commit --patch --message $MESSAGE) disallows hunk editing
 2014-09-29 23:01 UTC  (2+ messages)

Git for Windows 1.9.4.msysgit.2
 2014-09-29 22:38 UTC 

[PATCH] Documentation/git-rebase.txt: discuss --fork-point assumption of vanilla "git rebase" in DESCRIPTION
 2014-09-29 20:17 UTC  (4+ messages)
` [PATCH v2] "

[PATCH] Use SHELL_PATH as hash bang in test suite askpass helper script
 2014-09-29 17:49 UTC  (4+ messages)
` [PATCH] Ensure SHELL_PATH is the hash bang for "


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