]>
Commit | Line | Data |
---|---|---|
215a7ad1 JH |
1 | git-ssh-fetch(1) |
2 | ================ | |
2cf565c5 DG |
3 | |
4 | NAME | |
5 | ---- | |
215a7ad1 | 6 | git-ssh-fetch - Pulls from a remote repository over ssh connection |
2cf565c5 DG |
7 | |
8 | ||
9 | ||
10 | SYNOPSIS | |
11 | -------- | |
215a7ad1 | 12 | 'git-ssh-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] commit-id url |
2cf565c5 DG |
13 | |
14 | DESCRIPTION | |
15 | ----------- | |
63aff4fe | 16 | Pulls from a remote repository over ssh connection, invoking |
215a7ad1 JH |
17 | git-ssh-upload on the other end. It functions identically to |
18 | git-ssh-upload, aside from which end you run it on. | |
63aff4fe | 19 | |
2cf565c5 DG |
20 | |
21 | OPTIONS | |
22 | ------- | |
63aff4fe DB |
23 | commit-id:: |
24 | Either the hash or the filename under [URL]/refs/ to | |
25 | pull. | |
26 | ||
2cf565c5 DG |
27 | -c:: |
28 | Get the commit objects. | |
29 | -t:: | |
30 | Get trees associated with the commit objects. | |
31 | -a:: | |
32 | Get all the objects. | |
33 | -v:: | |
34 | Report what is downloaded. | |
63aff4fe DB |
35 | -w:: |
36 | Writes the commit-id into the filename under $GIT_DIR/refs/ on | |
37 | the local end after the transfer is complete. | |
2cf565c5 DG |
38 | |
39 | ||
40 | Author | |
41 | ------ | |
63aff4fe | 42 | Written by Daniel Barkalow <barkalow@iabervon.org> |
2cf565c5 DG |
43 | |
44 | Documentation | |
45 | -------------- | |
46 | Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>. | |
47 | ||
48 | GIT | |
49 | --- | |
a7154e91 | 50 | Part of the gitlink:git[7] suite |
2cf565c5 | 51 |