标签:标记 warning images ted pos 图片 spec 日志 本地仓库
$ git branch daily/1.0.0
$ git push origin daily/1.0.0
注意: 不能在当前分支删除此分支
$ git branch -d daily/1.0.0
$ git push origin :daily/1.0.0
$ git branch -a
$ git checkout -b dev origin/dev #远程仓库有dev分支, 但本地仓库没有时, 需要在本地创建新的dev分支
$ git checkout dev #本地有dev分支, 直接切换
$ git status
$ git pull
$ git add --all 或 git add .
$ git commit -m ‘first commit‘
$ git push origin master
master 为分支名称, myblog 为创建的目录
$ git clone -b master git@github.com:HooChiu/hoochiu.github.io.git myblog
$ git rm -r --cached 文件名称
$ git commit -m "注释"
$ git push
$ git reset --hard 3d51c955ddfc7a78da531b5c42b34ca2b60ea47b(某次commit编码)
$ git push -f origin 分支名
$ git checkout master
$ git pull
$ git merge 分支名 #将分支合并到master上
$ git push origin master
$ git tag -a v1.0.0 -m ‘标记备注‘ #针对某一时间点做标记
$ git push origin v1.0.0 #v1.0.0 是本次提交过程中的版本号
$ git tag -d v1.0.0 #删除本地tag
$ git push origin :v1.0.0 #删除远程v1.0.0 tag 方案一
$ git push origin --delete tag v1.0.0 #删除远程v1.0.0 tag 方案二
$ git push origin :refs/tags/v1.0.0 #删除远程v1.0.0 tag 方案三
$ git log #查看所有提交记录
$ git log --author ‘HooChiu‘ #查看某用户的提交记录
rm -f ./.git/index.lock
git pull 或者合并分支时
? ~ brew -v
Homebrew >1.2.0 (no git repository)
Homebrew/homebrew-core (no git repository)
Warning: git 2.14.1 is already installed
git -v
xcode-select: note: no developer tools were found at ‘/Applications/Xcode.app‘, requesting install. Choose an option in the dialog to download the command line developer tools.
? ~ git --version
git version 2.14.1
标签:标记 warning images ted pos 图片 spec 日志 本地仓库
原文地址:http://www.cnblogs.com/hchiu/p/7928727.html