当前位置: 首页 » Internet » git命令简单使用案例

git命令简单使用案例

Git是一款免费、开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目。Git的读音为/gɪt/。

以下是亲测命令:

一、添加远程仓库

1、创建git仓库
git init

2、添加文件到git索引
git add <filename>  — 单个文件添加
git add *  — 全部文件添加
git add dir1 (添加dir1这个目录,目录下的所有文件都被加入)

3、提交到本地仓库
git commit -m “代码提交描述”

4、添加远程仓库(本地关联)
git remote add pb https://github.com/lzqhuang/test.git

注释:查看是否添加关联 git remote -v

5、远程仓库下下代码
git pull pb master

6、提交到远端仓库(本地推送)
git push pb master
***master可以换成你想要推送的任何分支

******************
二、从远程库克隆

1、本地克隆
git clone git@github.com:lzqhuang/test.git

2、方法一

*****************
三、创建分支

1、创建分支lee
git checkout -b testing
相当于
git branch testing
git checkout testing

2、编辑文件
vim index.html

3、提交到本地仓库
git commit -m “代码提交描述”

4、切换回主分支
git checkout master

5、合并
git merge lee

6、删除原有分支
git branch -d lee

7、提交到远端仓库(本地推送)
git push pb master
***master可以换成你想要推送的任何分支

请尊重我们的辛苦付出,未经允许,请不要转载 本站 的文章,鄙视各种无耻的采集行为!