
git
chen_jiangtao
欢迎大家Star >>>>>>https://github.com/chenjiangtao/spring-boot-on-kubernetes<<<<<<
spring boot on kubernetes全家桶:MQ(ActiveMQ,Rabbit MQ), Redis Cluster, DB(Mysql,TiDB). Kong/Nginx ingress controller. PersistentVolumeClaim,PersistentVolume, DefaultStorageClass,hpa……All IN ONE !!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git使用cherry-pick和merge合并文件和分支
2.merge 分支 只能在本分支合并其它分支,所以先切换到想要合并别人的那个分支上(有点绕) 可原创 2020-09-24 13:52:49 · 5746 阅读 · 0 评论 -
Github Desktop 回退到某个log版本(git,log,reset)
快查log,确定你要的关键字:cleanup git log | grep cleanup 通过准确定位查idcommit git log --grep='Samples cleanup' 标题 reset 到这个id git reset --hard 512030f4fa5e1f3131d897386087e896ae946a33 github desktop 上查看...原创 2019-07-20 15:43:36 · 4240 阅读 · 0 评论 -
git push 报错处理 ! [rejected] master -> master (non-fast-forward)
正常init一个git工程的流程: 1.在工程目录下使用git init 2.使用git add * 在使用add *之前可以创建一个.gitignore文件,避免提交一些无用的文件 3.git commit -m 'init' 4.添加远程仓库位置:git remote add origin [email protected]:chenjiangtao/my-springboot-sample...原创 2019-09-16 09:51:27 · 411 阅读 · 0 评论