《Git与GitHub开发》第2章 Git命令的基本操作

CSDN博客地址

笔者将带领大家通过一个实例来学习Git的基本操作。

第一步:仓库初始化

在Repository/Git目录下点击右键->Git Bash Here

JXCdEQ.png

图1

进入Git Bash
命令:git init –bare shared.git

JXPCKf.png

图2

如图表明初始化成功。
=================================开发人员1操作==============================

第二步:复制仓库到本地

命令:git clone /D/Git/Git/Repository/Git/shared.git . (注意有个点,表明当前目录)

JXPkVg.png

图3

第三步:设置个人信息
git config:
 –system:操作/etc/gitconfig文件:包含了适用于系统所有用户和所有库的值。
 –global:操作~/.git config文件:具体到你的用户
 缺省:操作仓库.git/config文件

命令:
git config user.name "user1"//用户名
git config user.email user1@163.com//用户邮箱

JXPMrT.png

图4

用ls –al命令可以看到隐藏文件。如下图所示。

JXP8IJ.png

图5

进入.git文件夹,查看配置文件。
命令:cat congfig

JXPNxx.png

图6

第四步:忽略无需版本控制的文档

命令:echo "*.txt" > .gitignore

第五步:新建一个文件

命令:echo "User1 add content" > index.txt

JXPdsK.png

图7

查看是否添加成功。

JXPDde.png

图8

第六步:提交文件

命令:
git add index.txt

JXPrIH.png

图9

命令:git commit

JXP6JA.png

图10

命令:首行添加:Bruceou add the file
保存退出,如下图表示成功。

JXPRQP.png

图11

第七步:把自己的仓库提交到公共服务器

命令:git push origin master

JXP4eS.png

图12

===============================开发人员2操作================================

第八步:复制仓库到本地

命令:git clone /D/Git/Git/Repository/Git/shared.git .//本地克隆
命令:git clone git@github.com:用户名/仓库.git //远程克隆

JXP7Js.png

图13

第九步:设置个人信息

命令:
git config user.name "user2"
git config user.email user2@163.com

JXFDCd.png

图14

第十步:忽略无需版本控制的文档

命令:echo "*.txt" > .gitignore

第十一步:新建一个文件

命令:echo "User2 add content" >> index.txt

JXPLQ0.png

图15

第十二步:提交文件

命令:git add index.txt

JXPveU.png

图16

命令:git commit -m "Ouxiaolong add the file!"

JXPzo4.png

图17

第十三步:把自己的仓库提交到公共服务器

命令:git push origin master

JXiAOK.png

图18

查看状态:
命令:git status

===============================开发人员1操作================================

第十四步:下载服务器最新数据

git pull

Related posts

Leave a Comment