t/t5505-remote: modernize style
commit9b9439afd8e08a2370d008af2836198ff9008179
authorRamkumar Ramachandra <artagnon@gmail.com>
Sat, 22 Jun 2013 07:58:08 +0000 (22 13:28 +0530)
committerJunio C Hamano <gitster@pobox.com>
Sun, 23 Jun 2013 07:08:25 +0000 (23 00:08 -0700)
treeb4ef907b17b521a39e38a489a7b35f996a5dfe46
parent3e7a5b489e45ae8a3a0b222893d58b172d883136
t/t5505-remote: modernize style

Modernize the style of all tests throughout the file:

 - Remove spurious blank lines.

 - Indent the test body.

 - Make sure that all lines end with &&, to make it easier to spot
   breaks in the chain.

 - When executing something in a subshell, put the parenthesis on
   separate lines and indent the body.  Also make sure that the
   first statement in the subshell is a 'cd'.

 - When redirecting input or output, do not use SP between
   redirection operator and the target filename.

 - Use the <<-\EOF and <<-EOF forms of heredoc, not <<EOF, when the
   command is indented and the heredoc text itself does not have to
   have a leading tab.

Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5505-remote.sh