Re: [PATCH v2 001/142] check-builtins.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Matthieu Moy
Elia Pinto writes: > for _f in $(find . -name "*.sh") > do >   sed -i 's@`\(.*\)`@$(\1)@g' ${_f} > done What does this do in the case there are multiple ` on the same line? (nested backquotes or multiple `...` `...` on the same line) There are not many instances, and it seems no nested backquot

fetches with bitmaps enabled can cause accesses to already GC'd objects

2014-03-25 Thread Siddharth Agarwal
Hi, We're still experimenting with bitmaps, and we've have run into issues where fetching from a repository with bitmaps enabled can lead to objects that used to be present on the server but have since been GC'd being accessed, and git pack-objects on the server failing because of that. I ca

Re: [PATCH v4 2/2] log: add --show-linear-break to help see non-linear history

2014-03-25 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy writes: > Option explanation is in rev-list-options.txt. The interaction with -z > is left undecided. > > Signed-off-by: Nguyễn Thái Ngọc Duy > --- > On Fri, Mar 21, 2014 at 2:15 AM, Junio C Hamano wrote: > >> * Get rid of saved_linear, use another flag in struct object

Re: Borrowing objects from nearby repositories

2014-03-25 Thread Junio C Hamano
Junio C Hamano writes: > Ævar Arnfjörð Bjarmason writes: > >>> 1) Introduce '--borrow' to `git-fetch`. This would behave similarly >> to '--reference', except that it operates on a temporary basis, and >> does not assume that the reference repository will exist after the >> operation completes,

Re: [PATCH 12/19] tree-diff: remove special-case diff-emitting code for empty-tree cases

2014-03-25 Thread Junio C Hamano
Kirill Smelkov writes: > On Mon, Mar 24, 2014 at 02:18:10PM -0700, Junio C Hamano wrote: >> Kirill Smelkov writes: >> >> > via teaching tree_entry_pathcmp() how to compare empty tree descriptors: >> >> Drop this line, as you explain the "pretend empty compares bigger >> than anything else" ide

Re: [PATCH 03/10] t4018: an infrastructure to test hunk headers

2014-03-25 Thread Jeff King
On Tue, Mar 25, 2014 at 09:07:18PM +0100, Johannes Sixt wrote: > Am 24.03.2014 22:39, schrieb Jeff King: > > On Mon, Mar 24, 2014 at 05:36:59PM -0400, Jeff King wrote: > > > >>> +How to write RIGHT test cases > >>> += > >>> + > >>> +Insert the word "ChangeMe" (exactly

Re: [RFC/PATCH 1/4] test-lib: add test_dir_is_empty()

2014-03-25 Thread Junio C Hamano
Jens Lehmann writes: > For the upcoming submodule test framework we often need to assert that an > empty directory exists in the work tree. Add the test_dir_is_empty() > function which asserts that the given argument is an empty directory. > > Signed-off-by: Jens Lehmann > --- > > I believe this

SMS Application

2014-03-25 Thread Akeem Ganiyu
Hi Guys, I am new to this page. I am a VB program but I need your help. I want to develop SMS program. The program should be able to receive data through phone SMS. Please how do I go about this? Thanks for your support. A'Akeem An ounce of public health is worth a Pound of HEALTH CARE.-- To

Re: [PATCH v2 001/142] check-builtins.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Junio C Hamano
Junio C Hamano writes: > I've reworded the above like so: > > check-builtins.sh: use the $(...) construct for command substitution > > The Git CodingGuidelines prefer the $(...) construct for command > substitution instead of using the backquotes, or grave accents > (`...`).

Re: [PATCH v2 001/142] check-builtins.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Junio C Hamano
Junio C Hamano writes: > Elia Pinto writes: > >> 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

What's cooking in git.git (Mar 2014, #06; Tue, 25)

2014-03-25 Thread Junio C Hamano
Here are the topics that have been cooking. Commits prefixed with '-' are only in 'pu' (proposed updates) while commits prefixed with '+' are in 'next'. More topics merged to 'master', many of which are fallouts from GSoC microprojects. You can find the changes described here in the integration

Re: [PATCH 03/10] t4018: an infrastructure to test hunk headers

2014-03-25 Thread Johannes Sixt
Am 24.03.2014 22:39, schrieb Jeff King: > On Mon, Mar 24, 2014 at 05:36:59PM -0400, Jeff King wrote: > >>> +How to write RIGHT test cases >>> += >>> + >>> +Insert the word "ChangeMe" (exactly this form) at a distance of >>> +at least two lines from the line that must ap

Re: [PATCH v2 009/142] t0001-init.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Junio C Hamano
This conflicts with a topic in flight. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH v2 001/142] check-builtins.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Junio C Hamano
Elia Pinto writes: > 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 u

Windows Git pre-commit check file signature

2014-03-25 Thread Raymond Piller
I'm trying to ensure that a specific file is signed properly before allowing the file to be commited. I'm using powershell to do this, but this isn't a powershell issue. Here's the command I'm using to do the check: /c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe -Command "If ((Get

Re: [PATCH v2 000/142] Use the $( ... ) construct for command substitution instead of using the back-quotes

2014-03-25 Thread Junio C Hamano
Elia Pinto writes: > This is a second reroll after the > Matthieu Moy review. Changes from v1: > > - Dropped the silly patches to t6111-rev-list-treesame.sh, > t0204-gettext-reencode-sanity.sh. > > - Simple reformatting of the commit message. > > - added the toy script used for doing the patc

Re: [PATCH 12/19] tree-diff: remove special-case diff-emitting code for empty-tree cases

2014-03-25 Thread Junio C Hamano
Kirill Smelkov writes: >> > static int tree_entry_pathcmp(struct tree_desc *t1, struct tree_desc *t2) >> > { >> >struct name_entry *e1, *e2; >> >int cmp; >> > >> > + if (!t1->size) >> > + return t2->size ? +1 /* +∞ > c */ : 0 /* +∞ = +∞ */; >> > + else if (!t2->size) >> >

Re: [PATCH v2 14/19] tree-diff: rework diff_tree interface to be sha1 based

2014-03-25 Thread Junio C Hamano
Kirill Smelkov writes: > What are the downsides of "__" prefix by the way? Aren't these names reserved for compiler/runtime implementations? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger

[PATCH v2 055/142] t5302-pack-index.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 068/142] t5530-upload-pack-error.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 051/142] t5003-archive-zip.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 012/142] t0025-crlf-auto.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 048/142] t4119-apply-config.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 078/142] t6001-rev-list-graft.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 075/142] t5700-clone-reference.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 081/142] t6032-merge-large-rename.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 037/142] t3905-stash-include-untracked.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 052/142] t5100-mailinfo.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 089/142] t7406-submodule-update.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 064/142] t5516-fetch-push.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 079/142] t6002-rev-list-bisect.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 050/142] t5000-tar-tree.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 036/142] t3700-add.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 066/142] t5520-pull.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 045/142] t4038-diff-combined.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 082/142] t6034-merge-rename-nocruft.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 002/142] git-am.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 067/142] t5522-pull-symlink.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 003/142] git-pull.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 058/142] t5305-include-tag.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 018/142] t1002-read-tree-m-u-2way.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 030/142] t3100-ls-tree-restrict.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 005/142] git-rebase.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 070/142] t5538-push-shallow.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 049/142] t4204-patch-id.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 062/142] t5510-fetch.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 073/142] t5570-git-daemon.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 083/142] t6132-pathspec-exclude.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 042/142] t4013-diff-various.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 057/142] t5304-prune.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 084/142] t7001-mv.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 043/142] t4014-format-patch.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 060/142] t5505-remote.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 020/142] t1004-read-tree-m-u-wf.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 056/142] t5303-pack-corruption-resilience.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 065/142] t5517-push-mirror.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 061/142] t5506-remote-groups.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 046/142] t4057-diff-combined-paths.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 033/142] t3403-rebase-skip.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 087/142] t7006-pager.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 039/142] t4006-diff-mode.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 014/142] t0030-stripspace.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 085/142] t7003-filter-branch.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 024/142] t1401-symbolic-ref.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 054/142] t5301-sliding-window.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 077/142] t5900-repo-selection.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 034/142] t3511-cherry-pick-x.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 040/142] t4010-diff-pathspec.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 072/142] t5551-http-fetch-smart.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 028/142] t2102-update-index-symlinks.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 069/142] t5537-fetch-shallow.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 011/142] t0020-crlf.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 071/142] t5550-http-fetch-dumb.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 086/142] t7004-tag.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 074/142] t5601-clone.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 076/142] t5710-info-alternate.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 080/142] t6015-rev-list-show-all-parents.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 063/142] t5515-fetch-merge-logic.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 026/142] t1511-rev-parse-caret.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 017/142] t1001-read-tree-m-2way.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 088/142] t7103-reset-bare.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 021/142] t1020-subdirectory.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 029/142] t3030-merge-recursive.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 001/142] check-builtins.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 008/142] unimplemented.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 000/142] Use the $( ... ) construct for command substitution instead of using the back-quotes

2014-03-25 Thread 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

[PATCH v2 022/142] t1050-large.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 015/142] t0300-credentials.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 025/142] t1410-reflog.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 016/142] t1000-read-tree-m-3way.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 059/142] t5500-fetch-pack.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 047/142] t4116-apply-reverse.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 027/142] t1512-rev-parse-disambiguation.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 006/142] git-stash.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 053/142] t5300-pack-object.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 041/142] t4012-diff-binary.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 010/142] t0010-racy-git.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 009/142] t0001-init.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 019/142] t1003-read-tree-prefix.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

[PATCH v2 031/142] t3101-ls-tree-dirname.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
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

  1   2   3   >