git hub使用

1.注册github或者gitee远程库帐号,下载安装git工具

远程库:

gitee      https://gitee.com
github     https://github.com

git工具:

[https://github.com/waylau/git-for-win](https://github.com/waylau/git-for-win)

2. git操作命令

1. 初始化本地库

   git init

2. 添加工作区内容到本地库

   git add .   //.表示将工作区所有内容添加到本地库
   git commit -m '描述信息'  // 将暂存区内容提交到本地库

3. 提交本地库内容到远程库

   // 第一次提交 需要关联远程库地址
   git remote add origin https://gitee.com/viktor028/yuguo_test.git   
   
   // push推送代码到远程库
    git push -u origin master

3. 获取git远程库内容

1.第一次获取远程库内容 clone

git clone https://gitee/yuguoxy.git

2.以后获取远程库内容 pull 拉取 / fetch 取

git pull
git fetch

区别:
git pull = git fetch + git merge

4. 如何获取以前版本内容

  1. 查询历史对应不同版本的ID ,用于回退使用
$ git log --pretty=oneline
image

使用git log命令查看所有的历史版本,获取你git的某个历史版本的id

   假设查到历史版本的id是`fae6966548e3ae76cfa7f38a461c438cf75ba965`。
  1. 恢复到历史版本
$ git reset --hard fae6966548e3ae76cfa7f38a461c438cf75ba965
  1. 把修改推到远程服务器
$ git push -f -u origin master  
  1. 重新更新就可以了
git pull

5.分支

1.查看分支

git branch
image.png

2.创建分支

git branch 分支名
如 git branch sym-dev-v1.0

3.切换分支

git checkout 分支名

4.合并某分支到当前分支

git merge name

5.删除分支

git branch –d name

你可能感兴趣的:(git hub使用)