OC杂类Android开发拾穗iOS 开发

【Git 技术栈】- git基础教程

2016-05-12  本文已影响384人  CoderMacro

阅读原文-关注我的技术博客

一、Git基本原理图

二、Git基础操作

// 全局配置 
$ git config --global user.name "Your Name"
$ git config --global user.email "Your@example.com"
// 一次性配置
$ git config user.name "Your Name"
$ git config user.email "Your@example.com"
// 创建本地仓库目录
$ mkdir [local_repository_name]
        
// 进入创建的目录
$ cd [local_repository_name]
        
// 初始化当前目录为Git本地仓库
$ git init
        
//  新建一个目录,将其初始化为 Git 代码库(与上面三个命令等价)
$ git init [project-name]

// 下载一个项目和它的整个代码历史
$ git clone [url]
// 添加当前目录的所有文件到暂存区
$ git add .
        
//  添加指定文件到暂存区
$ git add [file1] [file2] ...
        
//  添加指定目录到暂存区,包括子目录
$ git add [dir]
$ git commit -m "[Your update information]"
// 回到当前版本
$ git reset --hard HEAD 
    
// 回退一个版本
$ git reset --hard HEAD^
    
// 回退连个版本 
$ git reset --hard HEAD^^ 
    
// 回退N个版本
$ git reset --hard HEAD~N 

// 回退任意版本
$ git reset --hard [commit_id]
// 起别名语法
$ git config alias.[new_name] "[old_name]"
    
// cimmit起别名
$ git config alias.ci commit  给 commit 起一个别名叫 ci
    
// "commit -m"起别名
$ git config alias.ci "commit -m"  给commit起个别名 ci
    
// 丧心病狂的给 git log 起一个NB的别名
$ git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"

二、Git分支与合并操作

$ git branch -m [old__branch_name] [new_branch_name]
$ git checkout [branch_name]
$ git branch [branch_name]
$ git branch -b [branch_name]
// 1. 查看所有分支 
$ git branch -a
            
// 2. 查看本地分支 
$ git branch 
        
// 3. 所有远程分支
$ git branch -r
// 1. 远程已有分支,并且已经关联本地分支且本地已经切换到要推送的分支
$ git push

// 2. 远程已有分支,但未关联本地分支且本地已经切换到要推送的分支
$ git push -u origin/[remote-branch]

// 3. 远程没有分支并,本地已经切换到要推送的分支
$ git push origin [local-branch]:[remote-branch]
// 删除本地分支
$ git branch -d [branch-name]

// 删除远程分支
$ git push origin --delete [branch-name]
git merge [name]

三、Git标签操作

// 列出所有 tag
$ git tag

// 查看 tag 信息
$ git show [tag name]
// 新建一个 tag 在当前 commit id
$ git tag [tag name]

// 新建一个 tag 在指定 commit id
$ git tag [tag name] [commit id]

// 新建一个分支,指向某个 tag
$ git checkout -b [branch] [tag]
// 提交指定标签到远程
$ git push origin [tag]

// 提交所有 tag
$ git push origin --tags
// 删除本地仓库标签 
$ git tag -d [tag name]

// 删除远程仓库标签 
$ git tag -d [tag name] // 先删除本地
$ git push origin :refs/tags/[tag name]// 删除远程

四、Git远程仓库配置

// 1. github/gitlab 生成rsa 的命令
$ ssh-keygen -t rsa -C "注册的github(gitlab)邮箱"
    
// 2. coding/gitCafe 生成rsa 的命令
$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

1 根据不同平台终端执行上面命令,Enter。

2 终端提示Enter file in which to save the key (/Users/Macro/.ssh/id_rsa):

3 注意,对生成定的秘钥进行重命名,输入名称:name_rsa,Enter。

4 然后输入密码 密码可以为空(推荐为空),Enter。

$ open name_rsa.pub  
// 或者
$ cat name_rsa.pub
复制私钥添加到对应平台的 sshkey 中
$ cd ~/.ssh
$ touch config
按照以下格式添加配置文件

Host git.coding.net // host网址

User xxxx@email.com // 用户邮箱

PreferredAuthentications publickey // 不变

IdentityFile ~/.ssh/coding_rsa // 生成的非默认地址的公钥存放点

$ ssh -T git@github.com     // github 
$ ssh -T git@gitlab.com    // gitlab
$ ssh -T git@git.coding.net // coding

四、.gitignore 规则

在git中如果想忽略掉某个文件,不让这个文件提交到版本库中,可以使用修改根目录中 .gitignore 文件的方法(如无,则需自己手工建立此文件)。这个文件每一行保存了一个匹配的规则例如:

 # 此为注释 – 将被 Git 忽略
*.a               # 忽略所有 .a 结尾的文件
!lib.a            # 但 lib.a 除外
/TODO       # 仅仅忽略项目根目录下的 TODO 文件,不包括 subdir/TODO
build/      # 忽略 build/ 目录下的所有文件
doc/*.txt   # 会忽略 doc/notes.txt 但不包括 doc/server/arch.txt

规则很简单,不做过多解释,但是有时候在项目开发过程中,突然心血来潮想把某些目录或文件加入忽略规则,按照上述方法定义后发现并未生效,原因是.gitignore只能忽略那些原来没有被track的文件,如果某些文件已经被纳入了版本管理中,则修改.gitignore是无效的。那么解决方法就是先把本地缓存删除(改变成未track状态),然后再提交:

git rm -r --cached .
git add .
git commit -m 'update .gitignore'

Xcode swift 标准
https://github.com/github/gitignore/blob/master/Swift.gitignore

参考文章:

Git忽略规则及.gitignore规则不生效的解决办法

廖雪峰Git教程

常用 Git 命令清单

你需要知道的12个Git高级命令

几年的Git使用技巧总结

上一篇下一篇

猜你喜欢

热点阅读