git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2018-02-07 20:38:55 to 2018-02-09 12:08:58 UTC [more...]

[PATCH] worktree: teach "add" to check out existing branches
 2018-02-09 12:08 UTC  (12+ messages)
` [PATCH v2 0/3] "
  ` [PATCH v2 1/3] worktree: improve message when creating a new worktree
  ` [PATCH v2 3/3] worktree: teach "add" to check out existing branches

Issue: Git Gui: show ssh key don't show key type id_ed25519.pub
 2018-02-09 11:21 UTC 

[PATCH v2 00/41] Automate updating git-completion.bash a bit
 2018-02-09 11:02 UTC  (55+ messages)
` [PATCH v2 01/41] parse-options: support --git-completion-helper
` [PATCH v3 00/42] Automate updating git-completion.bash a bit
  ` [PATCH v3 01/42] parse-options: support --git-completion-helper
  ` [PATCH v3 02/42] parse-options: add OPT_xxx_F() variants
  ` [PATCH v3 03/42] parse-options: let OPT__FORCE take optional flags argument
  ` [PATCH v3 04/42] git-completion.bash: introduce __gitcomp_builtin
  ` [PATCH v3 05/42] completion: use __gitcomp_builtin in _git_add
  ` [PATCH v3 06/42] completion: use __gitcomp_builtin in _git_am
  ` [PATCH v3 07/42] completion: use __gitcomp_builtin in _git_apply
  ` [PATCH v3 08/42] completion: use __gitcomp_builtin in _git_branch
  ` [PATCH v3 09/42] completion: use __gitcomp_builtin in _git_checkout
  ` [PATCH v3 10/42] completion: use __gitcomp_builtin in _git_cherry_pick
  ` [PATCH v3 11/42] completion: use __gitcomp_builtin in _git_clean
  ` [PATCH v3 12/42] completion: use __gitcomp_builtin in _git_clone
  ` [PATCH v3 13/42] completion: use __gitcomp_builtin in _git_commit
  ` [PATCH v3 14/42] completion: use __gitcomp_builtin in _git_config
  ` [PATCH v3 15/42] completion: use __gitcomp_builtin in _git_describe
  ` [PATCH v3 16/42] completion: use __gitcomp_builtin in _git_difftool
  ` [PATCH v3 17/42] completion: use __gitcomp_builtin in _git_fetch
  ` [PATCH v3 18/42] completion: use __gitcomp_builtin in _git_fsck
  ` [PATCH v3 19/42] completion: use __gitcomp_builtin in _git_gc
  ` [PATCH v3 20/42] completion: use __gitcomp_builtin in _git_grep
  ` [PATCH v3 21/42] completion: use __gitcomp_builtin in _git_help
  ` [PATCH v3 22/42] completion: use __gitcomp_builtin in _git_init
  ` [PATCH v3 23/42] completion: use __gitcomp_builtin in _git_ls_files
  ` [PATCH v3 24/42] completion: use __gitcomp_builtin in _git_ls_remote
  ` [PATCH v3 25/42] completion: use __gitcomp_builtin in _git_merge
  ` [PATCH v3 26/42] completion: use __gitcomp_builtin in _git_merge_base
  ` [PATCH v3 27/42] completion: use __gitcomp_builtin in _git_mv
  ` [PATCH v3 28/42] completion: use __gitcomp_builtin in _git_name_rev
  ` [PATCH v3 29/42] completion: use __gitcomp_builtin in _git_notes
  ` [PATCH v3 30/42] completion: use __gitcomp_builtin in _git_pull
  ` [PATCH v3 31/42] completion: use __gitcomp_builtin in _git_push
  ` [PATCH v3 32/42] completion: use __gitcomp_builtin in _git_remote
  ` [PATCH v3 33/42] remote: force completing --mirror= instead of --mirror
  ` [PATCH v3 34/42] completion: use __gitcomp_builtin in _git_replace
  ` [PATCH v3 35/42] completion: use __gitcomp_builtin in _git_reset
  ` [PATCH v3 36/42] completion: use __gitcomp_builtin in _git_revert
  ` [PATCH v3 37/42] completion: use __gitcomp_builtin in _git_rm
  ` [PATCH v3 38/42] completion: use __gitcomp_builtin in _git_show_branch
  ` [PATCH v3 39/42] completion: use __gitcomp_builtin in _git_status
  ` [PATCH v3 40/42] completion: use __gitcomp_builtin in _git_tag
  ` [PATCH v3 41/42] completion: use __gitcomp_builtin in _git_worktree
  ` [PATCH v3 42/42] git-completion.bash: add GIT_COMPLETION_OPTIONS=all config

[PATCH v3 00/11] document & test fetch pruning & add fetch.pruneTags
 2018-02-09  8:23 UTC  (30+ messages)
` [PATCH v2 00/17] "
` [PATCH v2 01/17] fetch: don't redundantly NULL something calloc() gave us
` [PATCH v2 02/17] fetch: trivially refactor assignment to ref_nr
` [PATCH v2 03/17] fetch: stop accessing "remote" variable indirectly
` [PATCH v2 04/17] remote: add a macro for "refs/tags/*:refs/tags/*"
` [PATCH v2 05/17] fetch tests: refactor in preparation for testing tag pruning
` [PATCH v2 06/17] fetch tests: re-arrange arguments for future readability
` [PATCH v2 07/17] fetch tests: add a tag to be deleted to the pruning tests
` [PATCH v2 08/17] fetch tests: test --prune and refspec interaction
` [PATCH v2 09/17] fetch tests: double quote a variable for interpolation
` [PATCH v2 10/17] fetch tests: expand case/esac for later change
` [PATCH v2 11/17] fetch tests: fetch <url> <spec> as well as fetch [<remote>]
` [PATCH v2 12/17] git fetch doc: add a new section to explain the ins & outs of pruning
` [PATCH v2 13/17] git remote doc: correct dangerous lies about what prune does
` [PATCH v2 14/17] git-fetch & config doc: link to the new PRUNING section
` [PATCH v2 15/17] fetch tests: add scaffolding for the new fetch.pruneTags
` [PATCH v2 16/17] fetch: add a --fetch-prune option and fetch.pruneTags config
` [PATCH v2 17/17] fetch: make the --fetch-prune work with <url>

[PATCH 1/1] Mark messages for translations
 2018-02-09  7:44 UTC  (3+ messages)
` [PATCH 0/1] "

[PATCH 0/8] rebase -i: offer to recreate merge commits
 2018-02-09  7:13 UTC  (10+ messages)
` [PATCH 5/8] rebase: introduce the --recreate-merges option

[PATCH v1] name-hash: properly fold directory names in adjust_dirname_case()
 2018-02-09  5:43 UTC  (8+ messages)
` [PATCH v2] "

[PATCH 0/3] Teach 'test_must_fail' to save the command's stderr to a file
 2018-02-09  3:33 UTC  (7+ messages)
` [PATCH 1/3] t: document 'test_must_fail ok=<signal-name>'
` [PATCH 2/3] t: teach 'test_must_fail' to save the command's stderr to a file
` [PATCH 3/3] t1404: use 'test_must_fail stderr=<file>'

bad behaviour while using git rebase -i -p
 2018-02-09  2:32 UTC  (2+ messages)

[PATCH v2 00/14] Serialized Git Commit Graph
 2018-02-08 23:38 UTC  (24+ messages)
` [PATCH v3 "
  ` [PATCH v3 01/14] commit-graph: add format document
  ` [PATCH v3 02/14] graph: add commit graph design document
  ` [PATCH v3 03/14] commit-graph: create git-commit-graph builtin
  ` [PATCH v3 04/14] commit-graph: implement write_commit_graph()
  ` [PATCH v3 05/14] commit-graph: implement 'git-commit-graph write'
  ` [PATCH v3 06/14] commit-graph: implement 'git-commit-graph read'
  ` [PATCH v3 07/14] commit-graph: update graph-head during write
  ` [PATCH v3 08/14] commit-graph: implement 'git-commit-graph clear'
  ` [PATCH v3 09/14] commit-graph: implement --delete-expired
  ` [PATCH v3 10/14] commit-graph: add core.commitGraph setting
  ` [PATCH v3 11/14] commit: integrate commit graph with commit parsing
  ` [PATCH v3 12/14] commit-graph: close under reachability
  ` [PATCH v3 13/14] commit-graph: read only from specific pack-indexes
  ` [PATCH v3 14/14] commit-graph: build graph from starting commits

[PATCH] color.h: document and modernize header
 2018-02-08 23:14 UTC  (8+ messages)
    ` [PATCH] CodingGuidelines: mention "static" and "extern"

[PATCH] rebase -p: fix incorrect commit message when calling `git merge`
 2018-02-08 22:32 UTC  (2+ messages)

Fetch-hooks
 2018-02-08 22:18 UTC  (7+ messages)

Left-over COMMIT_EDITMSG file in gitdir
 2018-02-08 22:18 UTC  (2+ messages)

[PATCH] send-email: have default batch size when relogin delay is given
 2018-02-08 22:00 UTC  (6+ messages)
` [PATCH] send-email: error out when relogin delay is missing

[RFC PATCH 0/4] blame: (dim rep. metadata lines or fields, decay date coloring)
 2018-02-08 21:19 UTC  (5+ messages)
` [PATCHv3 "
  ` [PATCHv3 2/4] builtin/blame: dim uninteresting metadata

[PATCH] docs/interpret-trailers: fix agreement error
 2018-02-08 20:29 UTC  (3+ messages)

Netgear X8 R8500
 2018-02-08 18:19 UTC 

[PATCH 0/2] Fix NULL checks for some packet_read_line call sites
 2018-02-08 18:58 UTC  (4+ messages)
` [PATCH 1/2] correct error messages for NULL packet_read_line()
` [PATCH 2/2] always check for NULL return from packet_read_line()

[PATCH 00/10] 'test_i18ngrep'-related fixes and improvements
 2018-02-08 16:36 UTC  (13+ messages)
` [PATCH v2 0/9] "
  ` [PATCH v2 1/9] t5541: add 'test_i18ngrep's missing filename parameter
  ` [PATCH v2 2/9] t5812: "
  ` [PATCH v2 3/9] t6022: don't run 'git merge' upstream of a pipe
  ` [PATCH v2 4/9] t4001: don't run 'git status' "
  ` [PATCH v2 5/9] t5510: consolidate 'grep' and 'test_i18ngrep' patterns
  ` [PATCH v2 6/9] t5536: let 'test_i18ngrep' read the file without redirection
  ` [PATCH v2 7/9] t: move 'test_i18ncmp' and 'test_i18ngrep' to 'test-lib-functions.sh'
  ` [PATCH v2 8/9] t: validate 'test_i18ngrep's parameters
  ` [PATCH v2 9/9] t: make 'test_i18ngrep' more informative on failure

"git branch" issue in 2.16.1
 2018-02-08 16:28 UTC  (11+ messages)

git gc --auto yelling at users where a repo legitimately has >6700 loose objects
 2018-02-08 16:23 UTC  (2+ messages)

[RFC PATCH 000/194] Moving global state into the repository object
 2018-02-08 15:42 UTC  (11+ messages)
` [PATCH 021/194] pack: add repository argument to reprepare_packed_git
  ` [PATCH 025/194] object-store: allow prepare_alt_odb to handle arbitrary repositories
  ` [PATCH 038/194] pack: allow sha1_loose_object_info "

How to produce a loose ref+size explosion via pruning + git-gc
 2018-02-08 15:37 UTC 

How juggle branches?
 2018-02-08 14:22 UTC  (3+ messages)
` Automatic parameters completion

Bug Report: Subtrees and GPG Signed Commits
 2018-02-08 13:53 UTC  (10+ messages)

Unexpected git diff output during merge conflict
 2018-02-08 11:50 UTC  (3+ messages)

[PATCH v1] dir.c: don't flag the index as dirty for changes to the untracked cache
 2018-02-08 10:33 UTC  (2+ messages)

[PATCHv4] tag: add --edit option
 2018-02-08  8:22 UTC  (2+ messages)

[PATCH v2 00/12] object_id part 11 (the_hash_algo)
 2018-02-08  2:48 UTC  (2+ messages)
` [PATCH v2] hash: update obsolete reference to SHA1_HEADER

What's cooking in git.git (Feb 2018, #01; Wed, 7)
 2018-02-07 23:13 UTC 

[PATCH v2 0/3] fixes for split index mode
 2018-02-07 22:41 UTC  (7+ messages)
` [PATCH v3 "
  ` [PATCH v3 1/3] read-cache: fix reading the shared index for other repos

categorization, documentation and packaging of "git core" commands
 2018-02-07 21:18 UTC  (4+ messages)

[PATCH] files-backend: unlock packed store only if locked
 2018-02-07 20:53 UTC  (4+ messages)

[PATCHv3] tag: add --edit option
 2018-02-07 20:47 UTC  (3+ messages)

Bug? Error during commit
 2018-02-07 20:45 UTC  (3+ 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).