Submodule is compatible with Hub

This commit is contained in:
Jingwen Owen Ou 2013-12-16 16:35:51 -08:00
Родитель 04e2d43ba8
Коммит 47ef6c2375
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -29,10 +29,11 @@ func submodule(command *Command, args *Args) {
}
func transformSubmoduleArgs(args *Args) {
if args.FirstParam() != "add" {
var idx int
if idx = args.IndexOfParam("add"); idx == -1 {
return
}
args.RemoveParam(0)
args.RemoveParam(idx)
transformCloneArgs(args)
args.InsertParam(0, "add")
args.InsertParam(idx, "add")
}