subtree: fix argument validation in add/pull/push
authorAnthony Baire <Anthony.Baire@irisa.fr>
Wed, 27 Nov 2013 18:34:09 +0000 (19:34 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 13 Jan 2014 22:37:52 +0000 (14:37 -0800)
When working with a remote repository add/pull/push do not accept a
<refspec> as parameter but just a <ref>. They should accept any
well-formatted ref name.

This patch:
- relaxes the check the <ref> argument in "git subtree add <repo>"
(previous code would not accept a ref name that does not exist
locally too, new code only ensures that the ref is well formatted)

- add the same check in "git subtree pull/push" + check the number of
parameters

- update the doc to use <ref> instead of <refspec>

Signed-off-by: Anthony Baire <Anthony.Baire@irisa.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found