- 浏览: 3421016 次
- 性别:
- 来自: 珠海
文章分类
- 全部博客 (1633)
- Java (250)
- Android&HTML5 (111)
- Struts (10)
- Spring (236)
- Hibernate&MyBatis (115)
- SSH (49)
- jQuery插件收集 (55)
- Javascript (145)
- PHP (77)
- REST&WebService (18)
- BIRT (27)
- .NET (7)
- Database (105)
- 设计模式 (16)
- 自动化和测试 (19)
- Maven&Ant (43)
- 工作流 (36)
- 开源应用 (156)
- 其他 (16)
- 前台&美工 (119)
- 工作积累 (0)
- OS&Docker (83)
- Python&爬虫 (28)
- 工具软件 (157)
- 问题收集 (61)
- OFbiz (6)
- noSQL (12)
最新评论
-
HEZR曾嶸:
你好博主,这个不是很理解,能解释一下嘛//左边+1,上边+1, ...
java 两字符串相似度计算算法 -
天使建站:
写得不错,可以看这里,和这里的这篇文章一起看,有 ...
jquery 遍历对象、数组、集合 -
xue88ming:
很有用,谢谢
@PathVariable映射出现错误: Name for argument type -
jnjeC:
厉害,困扰了我很久
MyBatis排序时使用order by 动态参数时需要注意,用$而不是# -
TopLongMan:
非常好,很实用啊。。
PostgreSQL递归查询实现树状结构查询
生成本地项目并上传 http://bach-dream.iteye.com/blog/1325159
从代码库下载代码到本地 http://bach-dream.iteye.com/blog/1333278
http://blog.csdn.net/feiniao1221/article/details/7516421
以gerrit-trigger-plugin为例,下面的链接都是从相应页面上直接拷贝的。
法一:不用github的账号,打开这个库在github上的主页,运行下面命令即可
read only
运行命令$git clone https://github.com/jenkinsci/gerrit-trigger-plugin.git
下面的三种方法都要先在github上注册账户,然后生成相应的ssh key,并把public key添加到个人账户里面,详见github帮助
read+write
$git clone git@github.com:flyingbird1221/gerrit-trigger-plugin.git
read+write
$git clone https://flyingbird1221@github.com/flyingbird1221/gerrit-trigger-plugin.git
会提示输入密码,注意此处的密码不是你在github上账户的密码,而是当前登录系统用户的密码。
read only
$git clone git://github.com/flyingbird1221/gerrit-trigger-plugin.git
http://www.cnblogs.com/yaoshan/archive/2013/01/10/2854281.html
git clone 命令参数:
usage: git clone [options] [--] <repo> [<dir>]
-v, --verbose be more verbose
-q, --quiet be more quiet
--progress force progress reporting
-n, --no-checkout don't create a checkout
--bare create a bare repository
--mirror create a mirror repository (implies bare)
-l, --local to clone from a local repository
--no-hardlinks don't use local hardlinks, always copy
-s, --shared setup as shared repository
--recursive initialize submodules in the clone
--recurse-submodules initialize submodules in the clone
--template <template-directory>
directory from which templates will be used
--reference <repo> reference repository
-o, --origin <name> use <name> instead of 'origin' to track upstream
-b, --branch <branch>
checkout <branch> instead of the remote's HEAD
-u, --upload-pack <path>
path to git-upload-pack on the remote
--depth <depth> create a shallow clone of that depth
--separate-git-dir <gitdir>
separate git dir from working tree
-c, --config <key=value>
set config inside the new repository
参数挺多,但常用的就几个:
1. 最简单直接的命令
git clone xxx.git
2. 如果想clone到指定目录
git clone xxx.git "指定目录"
3. clone时创建新的分支替代默认Origin HEAD(master)
git clone -b [new_branch_name] xxx.git
4. clone 远程分支
git clone 命令默认的只会建立master分支,如果你想clone指定的某一远程分支(如:dev)的话,可以如下:
A. 查看所有分支(包括隐藏的) git branch -a 显示所有分支,如:
* master
remotes/origin/HEAD -> origin/master
remotes/origin/dev
remotes/origin/master
B. 在本地新建同名的("dev")分支,并切换到该分支
git checkout -t origin/dev 该命令等同于:
git checkout -b dev origin/dev
从代码库下载代码到本地 http://bach-dream.iteye.com/blog/1333278
http://blog.csdn.net/feiniao1221/article/details/7516421
以gerrit-trigger-plugin为例,下面的链接都是从相应页面上直接拷贝的。
法一:不用github的账号,打开这个库在github上的主页,运行下面命令即可
read only
运行命令$git clone https://github.com/jenkinsci/gerrit-trigger-plugin.git
下面的三种方法都要先在github上注册账户,然后生成相应的ssh key,并把public key添加到个人账户里面,详见github帮助
read+write
$git clone git@github.com:flyingbird1221/gerrit-trigger-plugin.git
read+write
$git clone https://flyingbird1221@github.com/flyingbird1221/gerrit-trigger-plugin.git
会提示输入密码,注意此处的密码不是你在github上账户的密码,而是当前登录系统用户的密码。
read only
$git clone git://github.com/flyingbird1221/gerrit-trigger-plugin.git
http://www.cnblogs.com/yaoshan/archive/2013/01/10/2854281.html
git clone 命令参数:
usage: git clone [options] [--] <repo> [<dir>]
-v, --verbose be more verbose
-q, --quiet be more quiet
--progress force progress reporting
-n, --no-checkout don't create a checkout
--bare create a bare repository
--mirror create a mirror repository (implies bare)
-l, --local to clone from a local repository
--no-hardlinks don't use local hardlinks, always copy
-s, --shared setup as shared repository
--recursive initialize submodules in the clone
--recurse-submodules initialize submodules in the clone
--template <template-directory>
directory from which templates will be used
--reference <repo> reference repository
-o, --origin <name> use <name> instead of 'origin' to track upstream
-b, --branch <branch>
checkout <branch> instead of the remote's HEAD
-u, --upload-pack <path>
path to git-upload-pack on the remote
--depth <depth> create a shallow clone of that depth
--separate-git-dir <gitdir>
separate git dir from working tree
-c, --config <key=value>
set config inside the new repository
参数挺多,但常用的就几个:
1. 最简单直接的命令
git clone xxx.git
2. 如果想clone到指定目录
git clone xxx.git "指定目录"
3. clone时创建新的分支替代默认Origin HEAD(master)
git clone -b [new_branch_name] xxx.git
4. clone 远程分支
git clone 命令默认的只会建立master分支,如果你想clone指定的某一远程分支(如:dev)的话,可以如下:
A. 查看所有分支(包括隐藏的) git branch -a 显示所有分支,如:
* master
remotes/origin/HEAD -> origin/master
remotes/origin/dev
remotes/origin/master
B. 在本地新建同名的("dev")分支,并切换到该分支
git checkout -t origin/dev 该命令等同于:
git checkout -b dev origin/dev
发表评论
-
FFmpeg常用基本命令
2016-07-15 11:52 0http://www.cnblogs.com/dwdxdy/p ... -
iF.SVNAdmin安装
2016-06-27 17:13 1417http://blog.linhere.com/archive ... -
apache调优
2016-05-21 10:10 1140http://my.oschina.net/renqingsh ... -
tomcat命令
2016-04-28 09:56 943./startup.sh : 启动tomcat ./shutd ... -
Shiro 基于注解和标签实现的授权认证过程
2016-04-25 13:24 5948将 Shiro 作为应用的权限 ... -
Byteman 3.0.5 发布,Java 字节码注入工具
2016-04-23 10:29 1768Byteman 3.0.5 发布,Java 字 ... -
安装Hadoop, Hbase, Phoenix
2016-04-22 09:22 1484http://my.oschina.net/jrrx/blog ... -
jenkins+ant+jmeter搭建持续集成的接口测试平台实例
2016-04-15 13:29 1544http://my.oschina.net/u/1425843 ... -
Dubbo 介绍
2016-04-14 10:26 1053官方 http://dubbo.io/ DUBBO是一个分布式 ... -
Hadoop 2.6.4分布式集群环境搭建
2016-04-13 11:45 751http://my.oschina.net/jackieyea ... -
nagios报警信息,发送到微信端
2016-03-23 22:59 1127http://www.oschina.net/code/sni ... -
Keepalived配置与使用
2016-03-23 22:53 1021原文: http://weizhifeng.net/using ... -
会话状态保持,JSESSIONID,COOKIE,URL重写
2016-03-17 20:26 1761http://my.oschina.net/sniperLi/ ... -
Intellij IDEA 根据数据库自动生成pojo和hbm
2016-03-13 17:03 2376http://my.oschina.net/jimyao/bl ... -
比较简洁的Hadoop介绍
2016-03-10 22:49 943http://www.cnblogs.com/sunddenl ... -
Intellij 配置Tomact 热部署
2016-01-28 11:19 919http://my.oschina.net/heweipo/b ... -
Java 应用发布后,需要关注的7个性能指标
2015-12-16 23:39 1128http://my.oschina.net/oneapmoff ... -
dom4j解析xml-取消doctype中DTD验证设置
2015-11-27 11:30 2230http://pengfeng.iteye.com/blog/ ... -
Linux下的压缩和解压
2015-11-10 16:13 1096Linux下的压缩(zip)解压(unzip)缩命令 http ... -
加密算法
2015-11-10 15:44 901http://my.oschina.net/u/2359500 ...
相关推荐
这份"GitHub 使用指南 官方中文"是 GitHub 官方提供的帮助文档,旨在帮助中文用户更好地理解和使用 GitHub。 一、GitHub 基础概念 1. **仓库(Repository)**:在 GitHub 上,你的项目就是一个仓库,它包含了所有的...
GITHUB 使用手册 关于 GitHub 的基本概念 GitHub 是一个基于 web 的 Git 版本控制系统,提供了在线的版本控制和协作平台。它允许开发者们可以在线上创建、编辑和共享代码。 GitHub 账号的申请和设置 1. 申请 ...
github使用教程github使用教程github使用教程github使用教程github使用教程github使用教程github使用教程github使用教程github使用教程github使用教程github使用教程github使用教程github使用教程github使用教程...
Github使用教程.zip 身为程序员,怎么能不会使用github呢
github使用文档 github使用文档
### GitHub 使用教程详解 #### 一、注册 GitHub 账号 **1. 访问 GitHub 官网:** - 打开浏览器,输入 [GitHub.com](https://github.com/) 并访问 GitHub 的官方网站。 - 点击页面右上角的 “Signup” 按钮,进入...
github使用教程GitHub使用教程分享GitHub使用教程分享GitHub使用教程分享GitHub使用教程分享GitHub使用教程分享GitHub使用教程分享GitHub使用教程分享GitHub使用教程分享GitHub使用教程分享GitHub使用教程分享GitHub...
novel Java Spring Boot 3 + Vue 3 Java github使用教程 github使用教程 github使用教程 github使用教程 github使用教程
GitHub 使用方法详解 GitHub 是一个基于 Git 的代码托管平台,可以帮助开发者们更好地管理和协作开发项目。以下是 GitHub 使用方法的详细解释: 一、注册 GitHub 账号 在使用 GitHub 之前,需要注册一个 GitHub ...
6RimeRIME github使用教程 github使用教程 github使用教程 github使用教程 github使用教程
GitHub使用总结
github使用教程GitHub使用教程.zip
GitHub使用技巧.zip 1.在线编辑上传 2.留言时可以从剪贴板粘贴图片。会被上传到云端,并在markdown中整齐的显示出来 3.格式化代码 5.评论中超链接到另一个评论 6.文章中超链接到某行代码 7.项目板
github使用教程
github使用教程
GitHub 使用教程图文详解_手机访问github
Github使用教程,搭建公司自己用的linux git服务器,在github上发布自己的简历.zip