git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2014-09-22 19:41:39 to 2014-09-28 01:24:56 UTC [more...]

[PATCH 00/32] nd/multiple-work-trees cleanup
 2014-09-28  1:22 UTC  (44+ messages)
` [PATCH v2 00/32] nd/multiple-work-trees
  ` [PATCH v2 22/32] checkout: support checking out into a new working directory
  ` [PATCH v2 23/32] prune: strategies for linked checkouts
  ` [PATCH v2 28/32] gc: support prune --worktrees
    ` [PATCH v3 00/32] nd/multiple-work-trees
      ` [PATCH v3 01/32] path.c: make get_pathname() return strbuf instead of static buffer
      ` [PATCH v3 02/32] path.c: make get_pathname() call sites return const char *
      ` [PATCH v3 03/32] git_snpath(): retire and replace with strbuf_git_path()
      ` [PATCH v3 04/32] path.c: rename vsnpath() to do_git_path()
      ` [PATCH v3 05/32] path.c: group git_path(), git_pathdup() and strbuf_git_path() together
      ` [PATCH v3 06/32] git_path(): be aware of file relocation in $GIT_DIR
      ` [PATCH v3 07/32] *.sh: respect $GIT_INDEX_FILE
      ` [PATCH v3 08/32] reflog: avoid constructing .lock path with git_path
      ` [PATCH v3 09/32] fast-import: use git_path() for accessing .git dir instead of get_git_dir()
      ` [PATCH v3 10/32] commit: use SEQ_DIR instead of hardcoding "sequencer"
      ` [PATCH v3 11/32] $GIT_COMMON_DIR: a new environment variable
      ` [PATCH v3 12/32] git-sh-setup.sh: use rev-parse --git-path to get $GIT_DIR/objects
      ` [PATCH v3 13/32] *.sh: avoid hardcoding $GIT_DIR/hooks/
      ` [PATCH v3 14/32] git-stash: avoid hardcoding $GIT_DIR/logs/
      ` [PATCH v3 15/32] setup.c: convert is_git_directory() to use strbuf
      ` [PATCH v3 16/32] setup.c: detect $GIT_COMMON_DIR in is_git_directory()
      ` [PATCH v3 17/32] setup.c: convert check_repository_format_gently to use strbuf
      ` [PATCH v3 18/32] setup.c: detect $GIT_COMMON_DIR check_repository_format_gently()
      ` [PATCH v3 19/32] setup.c: support multi-checkout repo setup
      ` [PATCH v3 20/32] wrapper.c: wrapper to open a file, fprintf then close
      ` [PATCH v3 21/32] use new wrapper write_file() for simple file writing
      ` [PATCH v3 22/32] checkout: support checking out into a new working directory

[PATCH] init - Honour the global core.filemode setting
 2014-09-28  0:37 UTC 

[GIT PULL] some updates from German l10n team
 2014-09-27 13:58 UTC 

Bug Report: 'git add -Np .' does not add new files
 2014-09-27  1:23 UTC 

bug reporting
 2014-09-26 23:51 UTC  (2+ messages)

[PATCH] Documentation/git-rebase.txt: discuss --fork-point assumption of vanilla "git rebase" in DESCRIPTION
 2014-09-26 22:46 UTC  (4+ messages)

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

[PATCH] git-quiltimport.sh: disallow fuzz
 2014-09-26 21:02 UTC  (6+ messages)

What are git subtree push assertions?
 2014-09-26 21:24 UTC 

[PATCH 0/4] Consolidate ref parsing code
 2014-09-26 10:30 UTC  (3+ messages)
` [PATCH 1/4] strbuf.c: keep errno in strbuf_read_file()

Git 1.9.0 - build on Solaris 8 -> no git-remote-http ?
 2014-09-26  8:43 UTC  (3+ messages)

Transaction patch series overview
 2014-09-25 21:55 UTC  (9+ messages)
        ` [PATCH v21 0/19] rs/ref-transaction (Re: Transaction patch series overview)

[PATCH] de.po: Fixup one translation
 2014-09-25 20:20 UTC  (6+ messages)

[PATCH 0/7] l10n: de.po: use imperative form for command options
 2014-09-25 19:45 UTC  (5+ messages)
` [PATCH 3/7] part3: "

project wide: git config entry for [diff] renames=true
 2014-09-25 18:55 UTC  (6+ messages)

[PATCH RFC] log-tree: let format-patch not indent notes
 2014-09-25 18:08 UTC  (4+ messages)

[PATCH] Receive-pack: include entire SHA1 in nonce
 2014-09-25 18:03 UTC  (5+ messages)

[PATCH RFC] git-am: support any number of signatures
 2014-09-25 16:20 UTC  (17+ messages)

Branching workflow
 2014-09-25  5:15 UTC  (5+ messages)

Fix a critical bug in git-cvsexportcommit.perl
 2014-09-25  3:15 UTC  (3+ messages)

What's cooking in git.git (Sep 2014, #06; Wed, 24)
 2014-09-24 20:51 UTC 

[PATCH 1/2] add macro REALLOCARRAY
 2014-09-24 19:27 UTC  (10+ messages)
    ` [PATCH 1/2] add macro REALLOC_ARRAY
    ` [PATCH 2/2] use REALLOC_ARRAY for changing the allocation size of arrays

[PATCH for-maint] apply: gitdiff_verify_name(): accept "/dev/null\r"
 2014-09-24 17:55 UTC  (15+ messages)

Specifying account profile in MSMTP
 2014-09-24 16:52 UTC 

[PATCH] docs/git-mailinfo: Mention the manual separator (---)
 2014-09-24 15:25 UTC 

[PATCH] merge-recursive: Fix copy-paste mistake
 2014-09-24 12:52 UTC  (4+ messages)
` [PATCH] merge-recursive: Remove miss leading comment

Webadmin‏ Email felhasználói;
 2014-09-24  9:06 UTC 

Passing tar(1) options via git-archive(1)
 2014-09-24  5:46 UTC  (5+ messages)

[PATCH] git tag --contains : avoid stack overflow
 2014-09-23 22:41 UTC  (13+ messages)
` [PATCH v2] "
              ` [PATCH v3] git tag --contains: "

BUG?: git-filter-branch removes mergetags
 2014-09-23 20:26 UTC  (2+ messages)

[PATCH] archive: support filtering paths with glob
 2014-09-23 16:57 UTC  (5+ messages)
` [PATCH v2] "

[RFC/PATCH] fsck: do not canonicalize modes in trees we are checking
 2014-09-23 16:30 UTC  (3+ messages)

How to compile Git with NDK?
 2014-09-23 16:13 UTC  (6+ messages)

[PATCH] l10n:de.po: use comma before "um"
 2014-09-23 15:26 UTC  (2+ messages)

[PATCH v5 00/35] Lockfile correctness and refactoring
 2014-09-23 13:40 UTC  (20+ messages)
` [PATCH v5 09/35] lockfile.c: document the various states of lock_file objects
` [PATCH v5 18/35] commit_lock_file(): if close fails, roll back
` [PATCH v5 19/35] commit_lock_file(): rollback lock file on failure to rename
` [PATCH v5 20/35] api-lockfile: document edge cases
` [PATCH v5 22/35] git_config_set_multivar_in_file(): avoid call to rollback_lock_file()
` [PATCH v5 23/35] lockfile: avoid transitory invalid states

[Bug] Query string not being phrased correctly when question marks present in config URL
 2014-09-23  9:06 UTC  (2+ messages)

Bug in git 2.1.0 when cloning to directory with same name as repository
 2014-09-23  8:39 UTC  (2+ messages)

[PATCH] mailinfo: resolve -Wstring-plus-int warning
 2014-09-23  8:12 UTC  (12+ messages)

[PATCH v15 00/11] Add interpret-trailers builtin
 2014-09-22 21:23 UTC  (3+ messages)
` [PATCH v15 11/11] Documentation: add documentation for 'git interpret-trailers'

[PATCH] sha1_file: don't convert off_t to size_t too early to avoid potential die()
 2014-09-22 19:41 UTC  (2+ messages)


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