Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/0fatal/grpc-demo

grpc + docker-compose 学习
https://github.com/0fatal/grpc-demo

Last synced: about 1 month ago
JSON representation

grpc + docker-compose 学习

Awesome Lists containing this project

README

        

### git指令
```shell
#更新远程分支列表
git remote update origin --prune

#查看所有分支
git branch -a

#删除远程分支Chapater6
git push origin --delete Chapater6

#删除本地分支 Chapater6
git branch -d Chapater6

git pull origin master --allow-unrelated-histories
```