git remote add <name> <url>似乎不适用于Windows

时间:2015-06-04 08:22:59

标签: windows git

我正在使用win 7并将git bash集成到windows命令提示符中。我有一个repo,我正在尝试添加另一个遥控器。我这样做:

git remote add myserver ssh://git@subdomain.domain.com/blabla.git sources

现在git回复:

usage: git remote add [<options>] <name> <url>

    -f, --fetch           fetch the remote branches
    --tags                import all tags and associated objects when fetching
                          or do not fetch any tag at all (--no-tags)
    -t, --track <branch>  branch(es) to track
    -m, --master <branch>
                          master branch
    --mirror[=<push|fetch>]
                          set up remote as a mirror to push to or fetch from

我发现这令人费解,因为我认为这就是我所做的。有什么建议吗?

1 个答案:

答案 0 :(得分:1)

最后的单词sources导致问题。您引用的文档在<url>之后没有显示任何内容。如果它是文件夹名称,只需将其附加到URL:

git remote add myserver ssh://git@subdomain.domain.com/sources