本文共 4611 字,大约阅读时间需要 15 分钟。
首先在本地创建ssh key;
ssh-keygen -t rsa -C "your_email@youremail.com"
在对应的github地址配置增加SSH Key
命令如下:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
cat ~/.ssh/id_rsa.pub //复制到对应ssh设置密钥那里
初始化配置
git config –global user.name “Your Name Comes Here”
git config –global user.email you@yourdomain.example.com
git config –global credential.helper cache
git config –global credential.helper ‘cache –timeout=3600’
git config –global color.ui truegit config –global alias.co checkoutgit config –global alias.ci commitgit config –global alias.st statusgit config –global alias.br branchgit config –global core.editor “mate -w” # 设置Editor使用textmategit config -1 #列举所有配置
查看、添加、提交、删除、找回,重置修改文件
git help <command> # 显示command的help
git show # 显示某次提交的内容git show $idgit checkout — <file> # 抛弃工作区修改git checkout . # 抛弃工作区修改git add <file> # 将工作文件修改提交到本地暂存区git add . # 将所有修改过的工作文件提交暂存区git rm <file> # 从版本库中删除文件git rm <file> –cached # 从版本库中删除文件,但不删除文件git reset <file> # 从暂存区恢复到工作文件git reset — . # 从暂存区恢复到工作文件git reset –hard # 恢复最近一次提交过的状态,即放弃上次提交后的所有本次修改
git ci <file>
git ci .git ci -a # 将git add, git rm和git ci等操作都合并在一起做git ci -am “some comments”git ci –amend # 修改最后一次提交记录,也可以缩写为-amgit revert <$id> # 恢复某次提交的状态,恢复动作本身也创建了一次提交对象git revert HEAD # 恢复最后一次提交的状态
git diff <file> # 比较当前文件和暂存区文件差异
git diffgit diff <$id1> <$id2> # 比较两次提交之间的差异git diff <branch1>..<branch2> # 在两个分支之间比较git diff –staged # 比较暂存区和版本库差异git diff –cached # 比较暂存区和版本库差异git diff –stat # 仅仅比较统计信息
git log
git log <file> # 查看该文件每次提交记录git log -p <file> # 查看每次详细修改内容的diffgit log -p -2 # 查看最近两次详细修改内容的diffgit log –stat #查看提交统计信息
取得Git仓库
git init
git clone git@xbc.me:wordpress.git
git remote add origin git@xbc.me:wordpress.git
git remote -v
提交你的修改
git add .
git add -u
git commit –m “你的注释”
git push origin master
git status
git add readme.txt
git rm readme.txt
git rm –cached readme.txt
git mv reademe.txt readme
git log
git commit –amend
git commit –m “add readme.txt”
git add readme_forgottengit commit –amend
git reset HEAD b
git checkout –- readme.txt
git br -r # 查看远程分支
git br <new_branch> # 创建新的分支git br -v # 查看各个分支最后提交信息git br –merged # 查看已经被合并到当前分支的分支git br –no-merged # 查看尚未被合并到当前分支的分支
git co <branch> # 切换到某个分支
git co -b <new_branch> # 创建新的分支,并且切换过去git co -b <new_branch> <branch> # 基于branch创建新的new_branchgit co $id # 把某次历史提交记录checkout出来,但无分支信息,切换到其他分支会自动删除git co $id -b <new_branch> # 把某次历史提交记录checkout出来,创建成一个分支
git br -d <branch> # 删除某个分支
git br -D <branch> # 强制删除某个分支 (未被合并的分支被删除的时候需要强制)
git merge <branch> # 将branch分支合并到当前分支
git merge origin/master –no-ff # 不要Fast-Foward合并,这样可以生成merge提交git rebase master <branch> # 将master rebase到branch,相当于:
git stash # 暂存
git stash list # 列所有stashgit stash apply # 恢复暂存的内容git stash drop # 删除暂存区
git pull # 抓取远程仓库所有分支更新并合并到本地
git pull –no-ff # 抓取远程仓库所有分支更新并合并到本地,不要快进合并git fetch origin # 抓取远程仓库更新git merge origin/master # 将远程主分支合并到本地当前分支git co –track origin/branch # 跟踪某个远程分支创建相应的本地分支git co -b <local_branch> origin/<remote_branch> # 基于远程分支创建本地分支,功能同上git push # push所有分支git push origin master # 将本地主分支推到远程主分支git push -u origin master # 将本地主分支推到远程(如无远程主分支则创建,用于初始化远程仓库)git push origin <local_branch> # 创建远程分支, origin是远程仓库名git push origin <local_branch>:<remote_branch> # 创建远程分支git push origin :<remote_branch> #先删除本地分支(git br -d <branch>),然后再push删除远程分支
git branch fixBug
git chekcout fixBug
git chekcout –b fixBug
git merge fixBug
git branch –d fixBug
git fetch
git pull
git remote show origin
git checkout –b dev origin/develop
git remote -v # 查看远程服务器地址和仓库名称
git remote show origin # 查看远程服务器仓库状态git remote add origin git@ github:robbin/robbin_site.git # 添加远程仓库地址git remote set-url origin git@ github.com:robbin/robbin_site.git # 设置远程仓库地址(用于修改远程仓库地址)git remote rm <repository> # 删除远程仓库
转载于:https://blog.51cto.com/onebig/2055189