work miscellaneous notes

miscellaneous notes

Keep track of common updates

One.grpc

github: Address
Text Tutorial: Address
Video Tutorial: Address

Two. unittest address

3. HanLP entity word text processing address

4. Online word cloud address

Five. git workflow

1. Create a new branch fix-risk in the master branch

git checkout master
git checkout -b fix-risk

2. After the fix-risk branch modifies the bug, push it to the remote branch warehouse

git add ./
git commit -m "style(*)去掉时间模块"
git push

3. Merge into the develop branch and push to the remote develop branch

git checkout develop
git merge --no-ff -m "merge fix-risk" fix-risk
git push

4. The develop branch is merged into the master branch and pushed to the remote end

git checkout master
git merge --no-ff develop
git push

5. Delete the fix-risk branch

git checkout 其他分支
git branch -d fix-risk  # 删除本地分支
git branch -D fix-risk  # 强制删除本地分支
git push origin --delete fix-risk

Guess you like

Origin blog.csdn.net/L_W_D_/article/details/123335475