git、githup使用

简介: 一、git安装、配置   git安装:     root@ubuntu~# apt-get  install  git   git配置githup/自己的git服务器端账号, 即在用户的home目录下生成.

一、git安装、配置

  git安装:

    root@ubuntu~# apt-get  install  git

  git配置githup/自己的git服务器端账号, 即在用户的home目录下生成.gitcofig文件,可手动修改:

    root@ubuntu~# git config --global user.name "Your Name Here"      

    root@ubuntu~# git config --global user.email your_email@example.com

    root@ubuntu~# git config --global color.ui true

  查看已有的配置信息:

    root@ubuntu~# git config --list

二、git使用:

  git创建仓库(repository,老外简写repo):

    新建项目目录,eg: cd  /root/mygit

      1、首次将本地的项目初始化到git服务器:

        root@ubuntu~# git init    #创建一个空的repository,在当前目录下生成了.git文件夹

        root@ubuntu~# git add *

        root@ubuntu~# git commit -m 'initial project version'

        root@ubuntu~# git remote add origin git@github.com:username/project_name.git     # 即刚刚创建的仓库的地址

        root@ubuntu~# git push -u origin master                          #推送代码到远程代码库

      2、将git服务器代码初始化到本地:      

        root@ubuntu~# git clone git_address                           #把GitHub里的项目复制到本地    
  git添加及提交
    root@ubuntu~#git  add   demo.py                                 #添加demo.py文件

    root@ubuntu~#git status                                     #查看状态 

    root@ubuntu~#git commit  -m "log here"  #不加参数-m,则默认使用vi打开一个文件写入log      #等同于svn的commit 

    root@ubuntu~#git status

 1          _______________________________
 2         |                               |   
 3         |           histroy             |   
 4         |_______________________________|
 5                         |   
 6                         |   
 7                         | git commit
 8          _______________|_______________
 9         |                               |   
10         |           staging area        |   
11         |_______________________________|                                 
12                          |   
13                          |   
14                          | git add 
15          ________________|_______________
16         |                               |   
17         |           working  dir        |   
18         |_______________________________|                                                                        

   root@ubuntu~#git status -s    #查看三者之间的是否相同,标记位:M , MM,  

   root@ubuntu~#git diff       #比较working dir 与staging area之间的差异

   root@ubuntu~#git diff   --staged    #比较staging area 与 history之间的差异,用于add之后检测

  撤销误操作:

   root@ubuntu~#git add demo    #add一版代码到staging area

   root@ubuntu~#git status -s     

   M   demo

   root@ubuntu~#git  reset demo   #将history中的demo覆盖staging area

   root@ubuntu~#git checkout demo    #将staging area中文件覆盖到working dir

   直接从history覆盖到working dir:

   root@ubuntu~#git  checkout HEAD demo 

     同理将working dir中改动直接提交到history:

   root@ubuntu~#git  commit -am "update log"

 删除以及重命名:

     root@ubuntu~#git rm  demo

   root@ubuntu~#git status -s

   root@ubuntu~#git commit -m 'delete demo'

  保存working dir中的demo文件

   root@ubuntu~#git rm --cached demo    #只是把staging area中demo删除了

   root@ubuntu~#git reset demo        #把history中的demo覆盖到staging area中

   root@ubuntu~#git  mv demo demo.bak   #把working dir和staging area中重命名

   root@ubuntu~#git commit -m 'rename demo' #history也重命名了

   root@ubuntu~# git rm --cached demo.bak  #只修改了staging area部分

   root@ubuntu~#mv demo.bak demo

   root@ubuntu~#git add demo

   root@ubuntu~#git status -s

   root@ubuntu~#git commit -m 'rename demo.bak'

  赞存工作区:在代码修改之后,马上需要在原版本上修改bug,此时就可以将此时的工作区临时保存起来;

    root@ubuntu~#git stash    #此时working dir是history中的内容

    root@ubuntu~#vim  demo

    root@ubuntu~#git commit  -am 'quick fix'  #紧急提交,修改bug

    root@ubuntu~#git stash list         

    root@ubuntu~#git  stash pop         #将临时工作区恢复到working dir

  分支管理:

    root@ubuntu~# git  branch          #列出当前所有分支

    * master                    #*表示当前使用的分支
    root@ubuntu:~# git branch try_idea      #创建branch
    root@ubuntu:~# git branch
    * master
      try_idea
    root@ubuntu~# git checkout try_idea      #切换到try_idea分支
    D    aaa.py
    Switched to branch 'try_idea'
    root@ubuntu-ceph-06:~/cp/git# git branch
     mater
    * try_idea                     #当前分支

    root@ubuntu~#git branch -d  try_idea       #删除分支

    联合操作,创建分支并切换到新建的分支上:

    root@ubuntu~#git checkout -b try_idea

  版本合并:

    root@ubuntu~#git branch mybranch      

    root@ubuntu~#git checkout mybranch

    root@ubuntu~#vim  demo          #做下修改;

    root@ubuntu~#git commit -am "mybranch commit"

    root@ubuntu~#git  checkout master

    root@ubuntu~#git  merge  mybranch    #将mybranch分支合并到master分支

    root@ubuntu~#git branch -d mybranch   #只有在合并之后才能删除分支,否则报错

 分支版本合并:如图

 1                                                   master branch
 2   ____           ____            ____              ____
 3  |    |         |    |          |    |            |    |   
 4  |  a |  <---   |  b |    <---  |  c |  <----     | e  |
 5  |____|         |____|          |____|            |____|    
 6                                    |   
 7                                    |                bugfix branch
 8                                  __|_              ____
 9                                 |    |            |    |   
10                                 |  d |  <----     |  f | 
11                                 |____|            |____|

    root@ubuntu~#git merge  buffix      #在master版本上,并提交版本,到达了e版

    出现需要合成临时版本的情况,即c版合并f版,生成临时版本之后,再于e版本合并;

    出现的对话框,选择ctrl+x即可;若有冲突则提交不成功;需要手动vim修改

 git log, 如果嫌输出信息太多,看得眼花缭乱的,可以试试加上--pretty=oneline参数:

用带参数的git log也可以看到分支的合并情况: 

1 root@ubuntu-ceph-06:~/cp/mygit# git log --graph --pretty=oneline --abbrev-commit
2  *   f0be77e configct fixed
3  |\  
4  | * 290e5e3 change master
5  | * c539383 branche test
6  * | a315058 aa.txt
7  |/  
8  * e51e421 msg
9  * 6c84560 init msg

 

git分枝策略:

 

 

相关文章
|
开发工具 git
Git的基本使用(上)
Git的基本使用
145 0
Git的基本使用(上)
|
Linux Shell 项目管理
Git使用前配置
本章节我们将详细了解与学习Git使用前配置
176 0
Git使用前配置
|
Linux 开发工具 git
14 Git 使用问题总结
问题分析 : could not lock config file %HOMEDRIVE%%HOMEPATH%/.gitconfig 的问题 在我的电脑上 HOME 的值是 %HOMEDRIVE%%HOMEPATH% 竟然不识别。已知 %homedrive% 指操作系统所在盘默认为C:,%HOMEPATH% 指的是用户所在目录,举例说明\Users\zhangsan。 所以手动改成 C:\Users\hp 即可。
398 0
14 Git 使用问题总结
|
Shell 网络安全 开发工具
Git的一次使用流程
Git的一次使用流程
150 0
|
存储 安全 Java
大牛总结的 Git 使用技巧,写得太好了!
前言 本文是参考廖雪峰老师的Git资料再加上我自己对Git的理解,记录我的Git学习历程,作下此文是为以后学习,工作,开发中如果遇到问题可以回过头来参考参考。因为水平有限,难免会有出错的地方,欢迎指正。
189 0
大牛总结的 Git 使用技巧,写得太好了!
|
Linux 网络安全 数据处理
|
Java jenkins 测试技术
|
安全 关系型数据库 程序员
|
开发工具 git Windows
Git 使用
简介 Git 作为分布式版本控制系统,基于去中心化的设计思想,在每个分布式节点上都保存有完整的版本,降低了对中心仓库的依赖,增加了版本安全性。
1121 0
|
网络安全 开发工具 git
一天学习使用git
一:Git GitHub gitlab 三者的介绍 Git:是一个类似CVS,SVN的代码版本管理软件,用于敏捷高效地处理任何或小或大的项目,是一个完全分布式的版本控制工具 分布式版本系统的最大好处之一是在本地工作完全不需要考虑远程库的存在,也就是有没...