On Wednesday, September 19, 2012 4:23:50 AM UTC+2, fpefpe wrote: > Hello -- what would be url syntax for a ftp (remote) repo? is it the same > as the ftp: tag used in the browser? >
>From http://www.kernel.org/pub/software/scm/git/docs/git-clone.html : GIT URLS In general, URLs contain information about the transport protocol, the address of the remote server, and the path to the repository. Depending on the transport protocol, some of this information may be absent. Git natively supports ssh, git, http, https, ftp, ftps, and rsync protocols. The following syntaxes may be used with them: - ssh://[user@]host.xz[:port]/path/to/repo.git/ - git://host.xz[:port]/path/to/repo.git/ - http[s]://host.xz[:port]/path/to/repo.git/ - *ftp[s]://host.xz[:port]/path/to/repo.git/* - rsync://host.xz/path/to/repo.git/ -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To view this discussion on the web visit https://groups.google.com/d/msg/git-users/-/fGL1iKe8YsAJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/git-users?hl=en.
