首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
其他好文
> 详细
第三章读书心得
时间:
2016-04-25 17:42:26
阅读:
147
评论:
0
收藏:
0
[点我收藏+]
标签:
本章主要讲了git的使用入门,让我明白了一些知识:
安装Git
1、# apt-get install git
2、# apt-get install git-doc git-svn git-email git-gui gitk
查看Git文档
1、查询git-checkout 命令的帮助文档,使用命令:# man git-checkout
2、查询git-checkout 命令的文档,使用命令:# git help git-checkout
3、查询HTML格式的git-checkout 命令的文档,使用命令:# git help -w git-checkout
源代码的提取和获取
1、创建版本库: git init
1.建立一个开源项目的工作目录,并进入工作目录
# mkdir -p /demo/helloworld-git
# cd /demo/helloworld-git
2.执行命令
# git init
2、将文件提交到本地版本库:git commit
1.进入/demo/helloworld-git 目录,并建立一个helloworld.txt文件
# cd /demo/helloworld-git
# echo “helloworld”>helloworld.txt
2.执行命令将helloworld.txt文件加到本地版本库的索引中,并将helloworld.txt文件提交到版本库
# git add helloworld.txt
# git commit -m ‘helloworld-master’
3.显示日志记录
# git log
恢复文件
# git checkout helloworld.txt
3、创建本地分支:git branch
1.查看分支
#git branch
2.建立一个新分支
#git branch new-barnch
3.删除刚建立的新分支
#git branch -D new-barnch
4、切换本地分支:git checkout
1.将当前本地分支切换到new-barnch
#git checkout new-barnch
5、在GitHub上创建开源项目
6、上传开源代码到GitHub:git push
1.备份密匙文件和公匙文件
# ssh-keygen -t rsa -C “xxxxx@126.com”
2.检测密匙和公匙
# ssh -T git@github.com
3.向代理身份验证添加RSA身份 # ssh-add
4.设置上传者的姓名和email
# git config --global user.name”Your Name”
# git config --global user.email helloworld@126.com
5.设置helloworld工程在GitHub上的UPI
# git remote add origin git@github.com:androidguy/helloworld.git
6.将本地版本库中的文件上传到GitHub
# git push -u origin master
7.查看所有分支
# git branch -a
7、从GitHub下载源代码:git clone
1.下载整个工程
# git clone git@github.com:androidguy/helloworld.git
2.获取某一支的最新内容
# git pull origin master
通过学习让我大致了解了一些git的一些东西,让我受益匪浅。
第三章读书心得
标签:
原文地址:http://www.cnblogs.com/ly0419/p/5431708.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
分布式事务
2021-07-29
OpenStack云平台命令行登录账户
2021-07-29
getLastRowNum()与getLastCellNum()/getPhysicalNumberOfRows()与getPhysicalNumberOfCells()
2021-07-29
【K8s概念】CSI 卷克隆
2021-07-29
vue3.0使用ant-design-vue进行按需加载原来这么简单
2021-07-29
stack栈
2021-07-29
抽奖动画 - 大转盘抽奖
2021-07-29
PPT写作技巧
2021-07-29
003-核心技术-IO模型-NIO-基于NIO群聊示例
2021-07-29
Bootstrap组件2
2021-07-29
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!