码迷,mamicode.com
首页 > 其他好文 > 详细

git日常命令

时间:2017-08-01 12:45:54      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:不用   origin   查看   重置   某个版本   out   front   head   har   

克隆项目:git clone addr dir

切换分支,分支并没有 git checkout -b production origin/production
分支已存在,单纯切换分支 git checkout  branch_name  

更新 git pull
更新其他分支的文件 git checkout origin/production -- file1  file2

重置本地分支 git reset --hard  remotes/origin/production
删除分支 git branch  -D remotes/origin/production
删除远程不存在的本地分支git remote prune origin

更新某些文件到某个版本  git checkout 2efe37c8d18ab44fe79151c110b777241f7870f3 -- pc/common/header/head.html 不用管分支,只要找commit

查看不同分支某个文件的差异 git diff branch1 branch2 -- file
查看本地和参考的区别 git diff HEAD  file

提交命令
git branch --set-upstream master origin/master
git add -A
git commit -a
git push

迁移git仓库
git remote set-url origin ssh://git@gitlab.aipai.com:2224/front/AipaiPlatformTemplates.git

  

git日常命令

标签:不用   origin   查看   重置   某个版本   out   front   head   har   

原文地址:http://www.cnblogs.com/zenghansen/p/7267598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!