摘要:
1. 切换至master主分支 git checkout master 2. 将最新的master代码拉取到本地 git pull 3. 切换至需被覆盖的xxx分支 git checkout xxx 4. 将master合并到xxx分支 git merge master 5. 将合并后的xxx分支代 阅读全文
posted @ 2024-06-14 15:16
一头胖橘喵
阅读(81)
评论(0)
推荐(0)
matplotlib 简介 matplotlib是一个强大的python绘图和数据可视化的工具包。 安装方法: pip install matplotlib 引用方法: import matplotlib.pyplot as plt 绘图函数: plt.plot() 显示图像: plt.show() 阅读全文