git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 000/144] Use the $( ... ) construct for command substitution instead of using the back-quotes
@ 2014-03-25  8:24 Elia Pinto
  2014-03-25  8:24 ` [PATCH 001/144] check-builtins.sh: use the $( ... ) construct for command substitution Elia Pinto
                   ` (104 more replies)
  0 siblings, 105 replies; 113+ messages in thread
From: Elia Pinto @ 2014-03-25  8:24 UTC (permalink / raw)
  To: git; +Cc: Elia Pinto

This patch series changes everywhere the back-quotes construct for command
substitution with the $( ... ).  The Git CodingGuidelines prefer 
the $( ... ) construct for command substitution instead of using the back-quotes
, or grave accents (`..`).
    
The backquoted form is the historical method for command substitution,
and is supported by POSIX. However,all but the simplest uses become
complicated quickly. In particular,embedded command substitutions
and/or the use of double quotes require careful escaping with the backslash
character. Because of this the POSIX shell adopted the $(…) feature from
the Korn shell. Because this construct uses distinct
opening and closing delimiters, it is much easier to follow. 
Also now the embedded double quotes no longer need escaping.

The patch is simple but involves a large number of files with different authors. 
Being simple I think it is wasteful to cc a large number of different people
for doing a review. 

Elia Pinto (144):
  check-builtins.sh: use the $( ... ) construct for command
    substitution
  git-am.sh: use the $( ... ) construct for command substitution
  git-pull.sh: use the $( ... ) construct for command substitution
  git-rebase--merge.sh: use the $( ... ) construct for command
    substitution
  git-rebase.sh: use the $( ... ) construct for command substitution
  git-stash.sh: use the $( ... ) construct for command substitution
  git-web--browse.sh: use the $( ... ) construct for command
    substitution
  unimplemented.sh: use the $( ... ) construct for command substitution
  t0001-init.sh: use the $( ... ) construct for command substitution
  t0010-racy-git.sh: use the $( ... ) construct for command
    substitution
  t0020-crlf.sh: use the $( ... ) construct for command substitution
  t0025-crlf-auto.sh: use the $( ... ) construct for command
    substitution
  t0026-eol-config.sh: use the $( ... ) construct for command
    substitution
  t0030-stripspace.sh: use the $( ... ) construct for command
    substitution
  t0204-gettext-reencode-sanity.sh: use the $( ... ) construct for
    command substitution
  t0300-credentials.sh: use the $( ... ) construct for command
    substitution
  t1000-read-tree-m-3way.sh: use the $( ... ) construct for command
    substitution
  t1001-read-tree-m-2way.sh: use the $( ... ) construct for command
    substitution
  t1002-read-tree-m-u-2way.sh: use the $( ... ) construct for command
    substitution
  t1003-read-tree-prefix.sh: use the $( ... ) construct for command
    substitution
  t1004-read-tree-m-u-wf.sh: use the $( ... ) construct for command
    substitution
  t1020-subdirectory.sh: use the $( ... ) construct for command
    substitution
  t1050-large.sh: use the $( ... ) construct for command substitution
  t1100-commit-tree-options.sh: use the $( ... ) construct for command
    substitution
  t1401-symbolic-ref.sh: use the $( ... ) construct for command
    substitution
  t1410-reflog.sh: use the $( ... ) construct for command substitution
  t1511-rev-parse-caret.sh: use the $( ... ) construct for command
    substitution
  t1512-rev-parse-disambiguation.sh: use the $( ... ) construct for
    command substitution
  t2102-update-index-symlinks.sh: use the $( ... ) construct for
    command substitution
  t3030-merge-recursive.sh: use the $( ... ) construct for command
    substitution
  t3100-ls-tree-restrict.sh: use the $( ... ) construct for command
    substitution
  t3101-ls-tree-dirname.sh: use the $( ... ) construct for command
    substitution
  t3210-pack-refs.sh: use the $( ... ) construct for command
    substitution
  t3403-rebase-skip.sh: use the $( ... ) construct for command
    substitution
  t3511-cherry-pick-x.sh: use the $( ... ) construct for command
    substitution
  t3600-rm.sh: use the $( ... ) construct for command substitution
  t3700-add.sh: use the $( ... ) construct for command substitution
  t3905-stash-include-untracked.sh: use the $( ... ) construct for
    command substitution
  t3910-mac-os-precompose.sh: use the $( ... ) construct for command
    substitution
  t4006-diff-mode.sh: use the $( ... ) construct for command
    substitution
  t4010-diff-pathspec.sh: use the $( ... ) construct for command
    substitution
  t4012-diff-binary.sh: use the $( ... ) construct for command
    substitution
  t4013-diff-various.sh: use the $( ... ) construct for command
    substitution
  t4014-format-patch.sh: use the $( ... ) construct for command
    substitution
  t4036-format-patch-signer-mime.sh: use the $( ... ) construct for
    command substitution
  t4038-diff-combined.sh: use the $( ... ) construct for command
    substitution
  t4057-diff-combined-paths.sh: use the $( ... ) construct for command
    substitution
  t4116-apply-reverse.sh: use the $( ... ) construct for command
    substitution
  t4119-apply-config.sh: use the $( ... ) construct for command
    substitution
  t4204-patch-id.sh: use the $( ... ) construct for command
    substitution
  t5000-tar-tree.sh: use the $( ... ) construct for command
    substitution
  t5003-archive-zip.sh: use the $( ... ) construct for command
    substitution
  t5100-mailinfo.sh: use the $( ... ) construct for command
    substitution
  t5300-pack-object.sh: use the $( ... ) construct for command
    substitution
  t5301-sliding-window.sh: use the $( ... ) construct for command
    substitution
  t5302-pack-index.sh: use the $( ... ) construct for command
    substitution
  t5303-pack-corruption-resilience.sh: use the $( ... ) construct for
    command substitution
  t5304-prune.sh: use the $( ... ) construct for command substitution
  t5305-include-tag.sh: use the $( ... ) construct for command
    substitution
  t5500-fetch-pack.sh: use the $( ... ) construct for command
    substitution
  t5505-remote.sh: use the $( ... ) construct for command substitution
  t5506-remote-groups.sh: use the $( ... ) construct for command
    substitution
  t5510-fetch.sh: use the $( ... ) construct for command substitution
  t5515-fetch-merge-logic.sh: use the $( ... ) construct for command
    substitution
  t5516-fetch-push.sh: use the $( ... ) construct for command
    substitution
  t5517-push-mirror.sh: use the $( ... ) construct for command
    substitution
  t5520-pull.sh: use the $( ... ) construct for command substitution
  t5522-pull-symlink.sh: use the $( ... ) construct for command
    substitution
  t5530-upload-pack-error.sh: use the $( ... ) construct for command
    substitution
  t5537-fetch-shallow.sh: use the $( ... ) construct for command
    substitution
  t5538-push-shallow.sh: use the $( ... ) construct for command
    substitution
  t5550-http-fetch-dumb.sh: use the $( ... ) construct for command
    substitution
  t5551-http-fetch-smart.sh: use the $( ... ) construct for command
    substitution
  t5570-git-daemon.sh: use the $( ... ) construct for command
    substitution
  t5601-clone.sh: use the $( ... ) construct for command substitution
  t5700-clone-reference.sh: use the $( ... ) construct for command
    substitution
  t5710-info-alternate.sh: use the $( ... ) construct for command
    substitution
  t5900-repo-selection.sh: use the $( ... ) construct for command
    substitution
  t6001-rev-list-graft.sh: use the $( ... ) construct for command
    substitution
  t6002-rev-list-bisect.sh: use the $( ... ) construct for command
    substitution
  t6015-rev-list-show-all-parents.sh: use the $( ... ) construct for
    command substitution
  t6032-merge-large-rename.sh: use the $( ... ) construct for command
    substitution
  t6034-merge-rename-nocruft.sh: use the $( ... ) construct for command
    substitution
  t6111-rev-list-treesame.sh: use the $( ... ) construct for command
    substitution
  t6132-pathspec-exclude.sh: use the $( ... ) construct for command
    substitution
  t7001-mv.sh: use the $( ... ) construct for command substitution
  t7003-filter-branch.sh: use the $( ... ) construct for command
    substitution
  t7004-tag.sh: use the $( ... ) construct for command substitution
  t7006-pager.sh: use the $( ... ) construct for command substitution
  t7103-reset-bare.sh: use the $( ... ) construct for command
    substitution
  t7406-submodule-update.sh: use the $( ... ) construct for command
    substitution
  t7408-submodule-reference.sh: use the $( ... ) construct for command
    substitution
  t7504-commit-msg-hook.sh: use the $( ... ) construct for command
    substitution
  t7505-prepare-commit-msg-hook.sh: use the $( ... ) construct for
    command substitution
  t7602-merge-octopus-many.sh: use the $( ... ) construct for command
    substitution
  t7700-repack.sh: use the $( ... ) construct for command substitution
  t8003-blame-corner-cases.sh: use the $( ... ) construct for command
    substitution
  t9001-send-email.sh: use the $( ... ) construct for command
    substitution
  t9101-git-svn-props.sh: use the $( ... ) construct for command
    substitution
  t9104-git-svn-follow-parent.sh: use the $( ... ) construct for
    command substitution
  t9105-git-svn-commit-diff.sh: use the $( ... ) construct for command
    substitution
  t9107-git-svn-migrate.sh: use the $( ... ) construct for command
    substitution
  t9108-git-svn-glob.sh: use the $( ... ) construct for command
    substitution
  t9109-git-svn-multi-glob.sh: use the $( ... ) construct for command
    substitution
  t9110-git-svn-use-svm-props.sh: use the $( ... ) construct for
    command substitution
  t9114-git-svn-dcommit-merge.sh: use the $( ... ) construct for
    command substitution
  t9118-git-svn-funky-branch-names.sh: use the $( ... ) construct for
    command substitution
  t9119-git-svn-info.sh: use the $( ... ) construct for command
    substitution
  t9129-git-svn-i18n-commitencoding.sh: use the $( ... ) construct for
    command substitution
  t9130-git-svn-authors-file.sh: use the $( ... ) construct for command
    substitution
  t9132-git-svn-broken-symlink.sh: use the $( ... ) construct for
    command substitution
  t9137-git-svn-dcommit-clobber-series.sh: use the $( ... ) construct
    for command substitution
  t9138-git-svn-authors-prog.sh: use the $( ... ) construct for command
    substitution
  t9145-git-svn-master-branch.sh: use the $( ... ) construct for
    command substitution
  t9150-svk-mergetickets.sh: use the $( ... ) construct for command
    substitution
  t9300-fast-import.sh: use the $( ... ) construct for command
    substitution
  t9350-fast-export.sh: use the $( ... ) construct for command
    substitution
  t9501-gitweb-standalone-http-status.sh: use the $( ... ) construct
    for command substitution
  t9901-git-web--browse.sh: use the $( ... ) construct for command
    substitution
  test-lib-functions.sh: use the $( ... ) construct for command
    substitution
  lib-credential.sh: use the $( ... ) construct for command
    substitution
  lib-cvs.sh: use the $( ... ) construct for command substitution
  lib-gpg.sh: use the $( ... ) construct for command substitution
  p5302-pack-index.sh: use the $( ... ) construct for command
    substitution
  howto-index.sh: use the $( ... ) construct for command substitution
  install-webdoc.sh: use the $( ... ) construct for command
    substitution
  git-checkout.sh: use the $( ... ) construct for command substitution
  git-clone.sh: use the $( ... ) construct for command substitution
  git-commit.sh: use the $( ... ) construct for command substitution
  git-fetch.sh: use the $( ... ) construct for command substitution
  git-ls-remote.sh: use the $( ... ) construct for command substitution
  git-merge.sh: use the $( ... ) construct for command substitution
  git-repack.sh: use the $( ... ) construct for command substitution
  git-resolve.sh: use the $( ... ) construct for command substitution
  git-revert.sh: use the $( ... ) construct for command substitution
  git-tag.sh: use the $( ... ) construct for command substitution
  t9360-mw-to-git-clone.sh: use the $( ... ) construct for command
    substitution
  t9362-mw-to-git-utf8.sh: use the $( ... ) construct for command
    substitution
  t9365-continuing-queries.sh: use the $( ... ) construct for command
    substitution
  test-gitmw-lib.sh: use the $( ... ) construct for command
    substitution
  t7900-subtree.sh: use the $( ... ) construct for command substitution
  appp.sh: use the $( ... ) construct for command substitution
  txt-to-pot.sh: use the $( ... ) construct for command substitution
  t9100-git-svn-basic.sh: use the $( ... ) construct for command
    substitution

 Documentation/howto-index.sh                    |   12 ++--
 Documentation/install-webdoc.sh                 |    6 +-
 check-builtins.sh                               |    4 +-
 contrib/examples/git-checkout.sh                |    8 +--
 contrib/examples/git-clone.sh                   |   20 +++----
 contrib/examples/git-commit.sh                  |   10 ++--
 contrib/examples/git-fetch.sh                   |    6 +-
 contrib/examples/git-ls-remote.sh               |    4 +-
 contrib/examples/git-merge.sh                   |    4 +-
 contrib/examples/git-repack.sh                  |    2 +-
 contrib/examples/git-resolve.sh                 |    2 +-
 contrib/examples/git-revert.sh                  |    2 +-
 contrib/examples/git-tag.sh                     |    2 +-
 contrib/mw-to-git/t/t9360-mw-to-git-clone.sh    |   14 ++---
 contrib/mw-to-git/t/t9362-mw-to-git-utf8.sh     |    4 +-
 contrib/mw-to-git/t/t9365-continuing-queries.sh |    2 +-
 contrib/mw-to-git/t/test-gitmw-lib.sh           |    6 +-
 contrib/subtree/t/t7900-subtree.sh              |    2 +-
 contrib/thunderbird-patch-inline/appp.sh        |   14 ++---
 git-am.sh                                       |   30 +++++-----
 git-gui/po/glossary/txt-to-pot.sh               |    4 +-
 git-pull.sh                                     |    2 +-
 git-rebase--merge.sh                            |    4 +-
 git-rebase.sh                                   |    8 +--
 git-stash.sh                                    |    2 +-
 git-web--browse.sh                              |    6 +-
 t/lib-credential.sh                             |    2 +-
 t/lib-cvs.sh                                    |    2 +-
 t/lib-gpg.sh                                    |    2 +-
 t/perf/p5302-pack-index.sh                      |    2 +-
 t/t0001-init.sh                                 |   12 ++--
 t/t0010-racy-git.sh                             |    4 +-
 t/t0020-crlf.sh                                 |   42 +++++++-------
 t/t0025-crlf-auto.sh                            |   38 ++++++-------
 t/t0026-eol-config.sh                           |   20 +++----
 t/t0030-stripspace.sh                           |   20 +++----
 t/t0204-gettext-reencode-sanity.sh              |    2 +-
 t/t0300-credentials.sh                          |    2 +-
 t/t1000-read-tree-m-3way.sh                     |    4 +-
 t/t1001-read-tree-m-2way.sh                     |   18 +++---
 t/t1002-read-tree-m-u-2way.sh                   |   10 ++--
 t/t1003-read-tree-prefix.sh                     |    2 +-
 t/t1004-read-tree-m-u-wf.sh                     |    8 +--
 t/t1020-subdirectory.sh                         |   22 ++++----
 t/t1050-large.sh                                |    4 +-
 t/t1100-commit-tree-options.sh                  |    4 +-
 t/t1401-symbolic-ref.sh                         |    2 +-
 t/t1410-reflog.sh                               |   24 ++++----
 t/t1511-rev-parse-caret.sh                      |    4 +-
 t/t1512-rev-parse-disambiguation.sh             |    8 +--
 t/t2102-update-index-symlinks.sh                |    2 +-
 t/t3030-merge-recursive.sh                      |    2 +-
 t/t3100-ls-tree-restrict.sh                     |    2 +-
 t/t3101-ls-tree-dirname.sh                      |    2 +-
 t/t3210-pack-refs.sh                            |    2 +-
 t/t3403-rebase-skip.sh                          |    2 +-
 t/t3511-cherry-pick-x.sh                        |   14 ++---
 t/t3600-rm.sh                                   |    4 +-
 t/t3700-add.sh                                  |   16 +++---
 t/t3905-stash-include-untracked.sh              |    4 +-
 t/t3910-mac-os-precompose.sh                    |   16 +++---
 t/t4006-diff-mode.sh                            |    2 +-
 t/t4010-diff-pathspec.sh                        |    4 +-
 t/t4012-diff-binary.sh                          |   16 +++---
 t/t4013-diff-various.sh                         |    6 +-
 t/t4014-format-patch.sh                         |   10 ++--
 t/t4036-format-patch-signer-mime.sh             |    2 +-
 t/t4038-diff-combined.sh                        |    2 +-
 t/t4057-diff-combined-paths.sh                  |    2 +-
 t/t4116-apply-reverse.sh                        |   12 ++--
 t/t4119-apply-config.sh                         |    2 +-
 t/t4204-patch-id.sh                             |    4 +-
 t/t5000-tar-tree.sh                             |    6 +-
 t/t5003-archive-zip.sh                          |    2 +-
 t/t5100-mailinfo.sh                             |   12 ++--
 t/t5300-pack-object.sh                          |   18 +++---
 t/t5301-sliding-window.sh                       |   14 ++---
 t/t5302-pack-index.sh                           |   34 ++++++------
 t/t5303-pack-corruption-resilience.sh           |    8 +--
 t/t5304-prune.sh                                |    2 +-
 t/t5305-include-tag.sh                          |    8 +--
 t/t5500-fetch-pack.sh                           |   16 +++---
 t/t5505-remote.sh                               |    2 +-
 t/t5506-remote-groups.sh                        |    2 +-
 t/t5510-fetch.sh                                |   10 ++--
 t/t5515-fetch-merge-logic.sh                    |    4 +-
 t/t5516-fetch-push.sh                           |    4 +-
 t/t5517-push-mirror.sh                          |    2 +-
 t/t5520-pull.sh                                 |   10 ++--
 t/t5522-pull-symlink.sh                         |    2 +-
 t/t5530-upload-pack-error.sh                    |    2 +-
 t/t5537-fetch-shallow.sh                        |    4 +-
 t/t5538-push-shallow.sh                         |    4 +-
 t/t5550-http-fetch-dumb.sh                      |    8 +--
 t/t5551-http-fetch-smart.sh                     |    2 +-
 t/t5570-git-daemon.sh                           |    8 +--
 t/t5601-clone.sh                                |    2 +-
 t/t5700-clone-reference.sh                      |    2 +-
 t/t5710-info-alternate.sh                       |    2 +-
 t/t5900-repo-selection.sh                       |    2 +-
 t/t6001-rev-list-graft.sh                       |   12 ++--
 t/t6002-rev-list-bisect.sh                      |    6 +-
 t/t6015-rev-list-show-all-parents.sh            |    6 +-
 t/t6032-merge-large-rename.sh                   |    2 +-
 t/t6034-merge-rename-nocruft.sh                 |    2 +-
 t/t6111-rev-list-treesame.sh                    |    2 +-
 t/t6132-pathspec-exclude.sh                     |    2 +-
 t/t7001-mv.sh                                   |    4 +-
 t/t7003-filter-branch.sh                        |    6 +-
 t/t7004-tag.sh                                  |   16 +++---
 t/t7006-pager.sh                                |    2 +-
 t/t7103-reset-bare.sh                           |    2 +-
 t/t7406-submodule-update.sh                     |    4 +-
 t/t7408-submodule-reference.sh                  |    2 +-
 t/t7504-commit-msg-hook.sh                      |    2 +-
 t/t7505-prepare-commit-msg-hook.sh              |   32 +++++------
 t/t7602-merge-octopus-many.sh                   |    8 +--
 t/t7700-repack.sh                               |    4 +-
 t/t8003-blame-corner-cases.sh                   |    4 +-
 t/t9001-send-email.sh                           |   10 ++--
 t/t9100-git-svn-basic.sh                        |   24 ++++----
 t/t9101-git-svn-props.sh                        |   30 +++++-----
 t/t9104-git-svn-follow-parent.sh                |   48 ++++++++--------
 t/t9105-git-svn-commit-diff.sh                  |    4 +-
 t/t9107-git-svn-migrate.sh                      |   16 +++---
 t/t9108-git-svn-glob.sh                         |   20 +++----
 t/t9109-git-svn-multi-glob.sh                   |   32 +++++------
 t/t9110-git-svn-use-svm-props.sh                |    2 +-
 t/t9114-git-svn-dcommit-merge.sh                |   12 ++--
 t/t9118-git-svn-funky-branch-names.sh           |    2 +-
 t/t9119-git-svn-info.sh                         |    2 +-
 t/t9129-git-svn-i18n-commitencoding.sh          |    4 +-
 t/t9130-git-svn-authors-file.sh                 |   12 ++--
 t/t9132-git-svn-broken-symlink.sh               |    4 +-
 t/t9137-git-svn-dcommit-clobber-series.sh       |   24 ++++----
 t/t9138-git-svn-authors-prog.sh                 |    2 +-
 t/t9145-git-svn-master-branch.sh                |    4 +-
 t/t9150-svk-mergetickets.sh                     |    2 +-
 t/t9300-fast-import.sh                          |   68 +++++++++++------------
 t/t9350-fast-export.sh                          |    6 +-
 t/t9501-gitweb-standalone-http-status.sh        |    6 +-
 t/t9901-git-web--browse.sh                      |    2 +-
 t/test-lib-functions.sh                         |    8 +--
 unimplemented.sh                                |    2 +-
 144 files changed, 611 insertions(+), 611 deletions(-)

-- 
1.7.10.4

^ permalink raw reply	[flat|nested] 113+ messages in thread

end of thread, other threads:[~2014-03-29 23:56 UTC | newest]

Thread overview: 113+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-25  8:24 [PATCH 000/144] Use the $( ... ) construct for command substitution instead of using the back-quotes Elia Pinto
2014-03-25  8:24 ` [PATCH 001/144] check-builtins.sh: use the $( ... ) construct for command substitution Elia Pinto
2014-03-25  8:35   ` Matthieu Moy
2014-03-25 10:03     ` Elia Pinto
2014-03-25  8:24 ` [PATCH 002/144] git-am.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 003/144] git-pull.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 004/144] git-rebase--merge.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 005/144] git-rebase.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 006/144] git-stash.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 007/144] git-web--browse.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 008/144] unimplemented.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 009/144] t0001-init.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 010/144] t0010-racy-git.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 011/144] t0020-crlf.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 012/144] t0025-crlf-auto.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 013/144] t0026-eol-config.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 014/144] t0030-stripspace.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 015/144] t0204-gettext-reencode-sanity.sh: " Elia Pinto
2014-03-25  8:36   ` Matthieu Moy
2014-03-25  9:51     ` Elia Pinto
2014-03-25  8:24 ` [PATCH 016/144] t0300-credentials.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 017/144] t1000-read-tree-m-3way.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 018/144] t1001-read-tree-m-2way.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 019/144] t1002-read-tree-m-u-2way.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 020/144] t1003-read-tree-prefix.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 021/144] t1004-read-tree-m-u-wf.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 022/144] t1020-subdirectory.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 023/144] t1050-large.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 024/144] t1100-commit-tree-options.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 025/144] t1401-symbolic-ref.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 026/144] t1410-reflog.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 027/144] t1511-rev-parse-caret.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 028/144] t1512-rev-parse-disambiguation.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 029/144] t2102-update-index-symlinks.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 030/144] t3030-merge-recursive.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 031/144] t3100-ls-tree-restrict.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 032/144] t3101-ls-tree-dirname.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 033/144] t3210-pack-refs.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 034/144] t3403-rebase-skip.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 035/144] t3511-cherry-pick-x.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 036/144] t3600-rm.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 037/144] t3700-add.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 038/144] t3905-stash-include-untracked.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 039/144] t3910-mac-os-precompose.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 040/144] t4006-diff-mode.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 041/144] t4010-diff-pathspec.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 042/144] t4012-diff-binary.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 043/144] t4013-diff-various.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 044/144] t4014-format-patch.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 045/144] t4036-format-patch-signer-mime.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 046/144] t4038-diff-combined.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 047/144] t4057-diff-combined-paths.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 048/144] t4116-apply-reverse.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 049/144] t4119-apply-config.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 050/144] t4204-patch-id.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 051/144] t5000-tar-tree.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 052/144] t5003-archive-zip.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 053/144] t5100-mailinfo.sh: " Elia Pinto
2014-03-25  8:24 ` [PATCH 054/144] t5300-pack-object.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 055/144] t5301-sliding-window.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 056/144] t5302-pack-index.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 057/144] t5303-pack-corruption-resilience.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 058/144] t5304-prune.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 059/144] t5305-include-tag.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 060/144] t5500-fetch-pack.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 061/144] t5505-remote.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 062/144] t5506-remote-groups.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 063/144] t5510-fetch.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 064/144] t5515-fetch-merge-logic.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 065/144] t5516-fetch-push.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 066/144] t5517-push-mirror.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 067/144] t5520-pull.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 068/144] t5522-pull-symlink.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 069/144] t5530-upload-pack-error.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 070/144] t5537-fetch-shallow.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 071/144] t5538-push-shallow.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 072/144] t5550-http-fetch-dumb.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 073/144] t5551-http-fetch-smart.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 074/144] t5570-git-daemon.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 075/144] t5601-clone.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 076/144] t5700-clone-reference.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 077/144] t5710-info-alternate.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 078/144] t5900-repo-selection.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 079/144] t6001-rev-list-graft.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 080/144] t6002-rev-list-bisect.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 081/144] t6015-rev-list-show-all-parents.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 082/144] t6032-merge-large-rename.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 083/144] t6034-merge-rename-nocruft.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 084/144] t6111-rev-list-treesame.sh: " Elia Pinto
2014-03-25  8:52   ` Matthieu Moy
2014-03-25  9:52     ` Elia Pinto
2014-03-25  8:25 ` [PATCH 085/144] t6132-pathspec-exclude.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 086/144] t7001-mv.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 087/144] t7003-filter-branch.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 088/144] t7004-tag.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 089/144] t7006-pager.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 090/144] t7103-reset-bare.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 091/144] t7406-submodule-update.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 092/144] t7408-submodule-reference.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 093/144] t7504-commit-msg-hook.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 094/144] t7505-prepare-commit-msg-hook.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 095/144] t7602-merge-octopus-many.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 096/144] t7700-repack.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 097/144] t8003-blame-corner-cases.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 098/144] t9001-send-email.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 099/144] t9101-git-svn-props.sh: " Elia Pinto
2014-03-29 23:50   ` Eric Wong
2014-03-25  8:25 ` [PATCH 100/144] t9104-git-svn-follow-parent.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 101/144] t9105-git-svn-commit-diff.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 102/144] t9107-git-svn-migrate.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 103/144] t9108-git-svn-glob.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 104/144] t9109-git-svn-multi-glob.sh: " Elia Pinto
2014-03-25  8:25 ` [PATCH 105/144] t9110-git-svn-use-svm-props.sh: " Elia Pinto

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