Rohit Ashiwal <[email protected]> writes:
> t/t3431-rebase-options-compatibility.sh | 66 +++++++++++++++++++++++++
Isn't 3431 already taken?
> 5 files changed, 97 insertions(+), 6 deletions(-)
> create mode 100755 t/t3431-rebase-options-compatibility.sh
> ...
> + git checkout --orphan master &&
> + q_to_tab >file <<-EOF &&
> + line 1
> + line 2
> + line 3
> + EOF
This will trigger "indent-with-space". Instead of using q-to-tab,
perhaps something like this would be more appropriate (not limited
to this piece, but also other ones in this script that actually do
use Q to visualize a tab)?
sed -e "s/^|//" >file <<-EOF &&
|line 1
| line 2
|line 3
EOF