https://github.com/0fatal/grpc-demo
grpc + docker-compose 学习
https://github.com/0fatal/grpc-demo
Last synced: 2 days ago
JSON representation
grpc + docker-compose 学习
- Host: GitHub
- URL: https://github.com/0fatal/grpc-demo
- Owner: 0fatal
- License: mit
- Created: 2021-09-06T12:59:29.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-11T13:24:34.000Z (almost 4 years ago)
- Last Synced: 2025-04-03T16:18:17.487Z (3 months ago)
- Language: Python
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 Chapater6git pull origin master --allow-unrelated-histories
```