recoding.................
[TOC]
git pull拉取云端仓库最新内容,之后才能正常提交。git remote add <仓库快捷名> <仓库地址>
git remote add origin git@gitee.com:robot_preparation/code.git
git branch -a
git fetch origin
git pull origin test_branch
git checkout -b test_branch origin/test_branch

python –m pydoc –p 1234
# 在本地端口1234
# http://localhost:1234/
pydoc -g
# 可以打开一个tkinter的搜索窗口来查看文档。