Git远程操作

来源:互联网 发布:淘宝客服介入处理时间 编辑:程序博客网 时间:2024/05/01 10:31


远程操作非常简便

  • git clone
  • git remote
  • git fetch
  • git pull
  • git push

git



$ git clone <版本库的网址>
$ git clone https://github.com/jquery/jquery.git
$ git clone <版本库的网址> <本地目录名>

git clone支持多种协议,除了HTTP(s)以外,还支持SSH、Git、本地文件协议等,下面是一些例子。


$ git clone http[s]://example.com/path/to/repo.git/$ git clone ssh://example.com/path/to/repo.git/$ git clone git://example.com/path/to/repo.git/$ git clone /opt/git/project.git $ git clone file:///opt/git/project.git$ git clone ftp[s]://example.com/path/to/repo.git/$ git clone rsync://example.com/path/to/repo.git/

SSH协议还有另一种写法。

$ git clone [user@]example.com:path/to/repo.git/











0 0
原创粉丝点击