当前位置:   article > 正文

Python - GitPython的使用_python 安装git

python 安装git

1、安装GitPython
pip install gitpython

pycharm 搜索安装
File->Setting->Pyhon Interpreter,如下图操作安装
在这里插入图片描述

2、实例:
#前提—电脑已配置安装GIT,所要提交目录已配置GIT

#安装完成后,引入git
from git import Repo

“”“git命令提交文件”“”
today = datetime.now().strftime(“%Y%m%d”)

#创建操作对象
ROOT_DIR = os.path.dirname(os.path.abspath(file))
repo = Repo(ROOT_DIR)

#查看当前分支
print(ROOT_DIR, repo.active_branch)

#切换分支
repo.git.checkout(‘master’)

#获取版本库暂存区
index = repo.index

#添加修改文件 – 注意这里today为你需要修改或新增的文件
index.add([today])

#提交修改到本地仓库
index.commit(‘update report folder’)

#获取远程仓库
remote = repo.remote()

#拉取远程仓库数据
remote.pull()

#推送本地修改到远程仓库
remote.push()

print(‘-完成git提交-’)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/405850
推荐阅读
相关标签
  

闽ICP备14008679号