Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 学习
- Host: GitHub
- URL: https://github.com/0fatal/grpc-demo
- Owner: 0fatal
- License: mit
- Created: 2021-09-06T12:59:29.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-11T13:24:34.000Z (over 3 years ago)
- Last Synced: 2024-10-29T10:23:08.601Z (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
```