iOS开发程序员iOS程序猿

Git常用命令整理

2018-01-15  本文已影响64人  WenBo丨星空灬

一、配置账号、SSH

git config --global user.name "Your Name"
git config --global user.email "email@example.com"
ssh-keygen -t rsa -C "your email"

//查看公钥
vim .ssh/id_rsa.pub 
或
open .ssh/id_rsa.pub 
ssh -T git@github.com 

二、忽略.gitignore文件

# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint
.DS_Store
*.xcuserstate
*.lock

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output

# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/

三、Git基本操作(常用)


//创建文件夹
mkdir learngit

//切换到learngit
cd learngit

//查看路径
pwd

//通过git init命令把这个目录变成Git可以管理的仓库
git init

//查看.git文件,因为这个文件是隐藏的
ls -ah
//添加所有文件
git add .

//添加单个
git add [file]

//添加多个
git add [file1] [file2]
//带备注信息
git commit -m "your note"
git clone [远程仓库HTTPS/SSH地址]
//查看提交详情
git log

//省略输出相关信息
git log --pretty=oneline

//省略部分commit id
git log --pretty=oneline --abbrev-commit
git remote add origin [远程仓库地址]
//我们第一次推送master分支时,加上了-u参数,Git不但会把本地的master分支内容推送的远程新的master分支,还会把本地的master分支和远程的master分支关联起来,在以后的推送或者拉取时就可以简化命令。
git push -u origin master

//简化命令
git push
//查看远程库的信息
git remote

//显示更详细的信息
git remote -v
git pull
//将origin厂库的master分支拉取并合并到本地的my_test分支上
git pull <远程主机> <远程分支>:<本地分支>

四、Git版本回退

//回退到上一个版本
git reset --hard HEAD^

//跳到指定版本,之前或未来
git reset --hard [commit id(前7位)]

git reflog
gti status
git diff HEAD -- [file]
//把文件在工作区的修改全部撤销
//一种是readme.txt自修改后还没有被放到暂存区,现在,撤销修改就回到和版本库一模一样的状态
//一种是readme.txt已经添加到暂存区后,又作了修改,现在,撤销修改就回到添加到暂存区后的状态。
git checkout -- [file]
//用命令git reset HEAD file可以把暂存区的修改撤销掉(unstage),重新放回工作区
//git reset命令既可以回退版本,也可以把暂存区的修改回退到工作区。
git reset HEAD [file]
//文件管理器中把没用的文件删了
rm [file]

//从版本库中删除该文件
git rm [file]

//一种情况是删错了,因为版本库里还有呢,所以可以很轻松地把误删的文件恢复到最新版本
git checkout -- [file]

五、Git分支操作

//创建dev分支,然后切换到dev分支
git checkout -b [分支名]

//git checkout命令加上-b参数表示创建并切换,相当于以下两条命令
git branch [分支名]
git checkout [分支名]
git checkout [分支名]
//查看本地分支
git branch

//查看远程分支,远程分支是红色
git branch -a

或查看最新提交信息
git branch -v
//把dev分支的工作成果合并到master分支上
git merge [name]
//删除本地分支
git branch -d [name]

//删除远程分支
git push origin :[branch name]
git branch -r -d origin/[branch name]
git log --graph

git log --graph --pretty=oneline --abbrev-commit
//分支管理策略
阅读: 473797
通常,合并分支时,如果可能,Git会用Fast forward模式,但这种模式下,删除分支后,会丢掉分支信息。
如果要强制禁用Fast forward模式,Git就会在merge时生成一个新的commit,这样,从分支历史上就可以看出分支信息。
git merge --no-ff -m "your note" [branch name]
git branch -D <name>
git push origin [branch name]

六、Git打标签

参考这篇文章:MAC上Git打标签

二、参考文章

1、iOS 使用SourceTree忽略一些不需要版本管理的文件
2、git 查看远程分支、本地分支、创建分支、把分支推到远程repository、删除本地分支

上一篇下一篇

猜你喜欢

热点阅读