提交 e9b49083 编写于 作者: W W. Trevor King 提交者: Junio C Hamano

user-manual: use 'remote add' to setup push URLs

There is no need to use here documents to setup this configuration.
It is easier, less confusing, and more robust to use `git remote add`
directly.
Signed-off-by: NW. Trevor King <wking@tremily.us>
Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 d32805dc
......@@ -1992,16 +1992,21 @@ will not be updated by the push. This may lead to unexpected results if
the branch you push to is the currently checked-out branch!
As with `git fetch`, you may also set up configuration options to
save typing; so, for example, after
save typing; so, for example:
-------------------------------------------------
$ git remote add public-repo ssh://yourserver.com/~you/proj.git
-------------------------------------------------
adds the following to `.git/config`:
-------------------------------------------------
$ cat >>.git/config <<EOF
[remote "public-repo"]
url = ssh://yourserver.com/~you/proj.git
EOF
url = yourserver.com:proj.git
fetch = +refs/heads/*:refs/remotes/example/*
-------------------------------------------------
you should be able to perform the above push with just
which lets you do the same push with just
-------------------------------------------------
$ git push public-repo master
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册