博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git 日常命令
阅读量:5252 次
发布时间:2019-06-14

本文共 983 字,大约阅读时间需要 3 分钟。

克隆项目: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<
br
><
br
>git内存不够导致pull push失败问题
./git/config [core] packedGitLimit = 128m packedGitWindowSize = 128m [pack] deltaCacheSize = 128m packSizeLimit = 128m windowMemory = 128m git设置当前分支未默认push分支 git config --global push.default "current" 原文地址:

转载于:https://www.cnblogs.com/Json159/p/11291733.html

你可能感兴趣的文章
Linux pipe函数
查看>>
java equals 小记
查看>>
爬虫-通用代码框架
查看>>
2019春 软件工程实践 助教总结
查看>>
YUV 格式的视频呈现
查看>>
Android弹出框的学习
查看>>
现代程序设计 作业1
查看>>
在android开发中添加外挂字体
查看>>
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
多线程实现资源共享的问题学习与总结
查看>>
Learning-Python【26】:反射及内置方法
查看>>
torch教程[1]用numpy实现三层全连接神经网络
查看>>
java实现哈弗曼树
查看>>
转:Web 测试的创作与调试技术
查看>>
python学习笔记3-列表
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
线程androidAndroid ConditionVariable的用法
查看>>
stap-prep 需要安装那些内核符号
查看>>
转载:ASP.NET Core 在 JSON 文件中配置依赖注入
查看>>