码迷,mamicode.com
首页 > 其他好文 > 详细

Git---Git及GitHub使用笔记

时间:2016-08-20 13:13:12      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

一、远程项目获取(克隆)
syntax:
$ git clone <版本库的网址>
$ git clone <版本库的网址> <本地目录名>
example:
$ git clone https://github.com/jquery/jquery.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/
二、代码提交
$ git pull
$ git add .
$ git commit -m "update project"
$ git push origin master
三、打标签
$ git tag
$ git tag -d 1.0
$ git push origin --delete tag 1.0
$ git tag 1.0
$ git push --tags

Git---Git及GitHub使用笔记

标签:

原文地址:http://www.cnblogs.com/ysjshrine/p/5790219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!