当前位置: 首页 > news >正文

使用Python脚本执行Git命令

说明:本文介绍如何使用Python脚本在某个目录下执行Git命令

编码

直接上代码

import os
import subprocessdef open_git_bash_and_run_command(folder_path, git_command):# 检查文件夹路径是否存在if not os.path.exists(folder_path):print(f"错误:文件夹路径不存在:{folder_path}")returnif not os.path.isdir(folder_path):print(f"错误:路径不是一个文件夹:{folder_path}")return# Git Bash 的常见安装路径git_bash_paths = r""try:full_command = f'cd "{folder_path}" && {git_command}'# 执行subprocess.run([git_bash_paths, "-c", full_command],check=True  # 如果命令返回非零状态码,则抛出异常)print(f"【命令在 '{folder_path}' 中成功执行】")print("==========================================================================")except subprocess.CalledProcessError as e:print(f"命令执行失败,返回码: {e.returncode}")except FileNotFoundError as e:print(f"无法启动 Git Bash: {e}")except Exception as e:print(f"发生未知错误: {e}")if __name__ == "__main__":# 项目路径folder_path = r""# Git 命令,用三引号转义git_command_template = """git status"""# Git 命令校验,以 git 开头if not git_command_template.lower().startswith("git "):print("警告:命令似乎不是以 'git' 开头,但仍将尝试执行。")# 执行open_git_bash_and_run_command(folder_path, git_command_template)

其中,加上需要执行的目录

    # 项目路径folder_path = r"C:\Users\10765\Documents\info\code\now\easyexcel"

加上电脑上安装的 Git 执行程序的地址

    # Git Bash 的常见安装路径git_bash_paths = r"C:\Program Files\Git\bin\bash.exe"

执行,展示该目录下执行 Git 命令 git status 的返回结果

在这里插入图片描述

更近一步

来点难度的,查看多个 Git 文件夹本周一~周五的日志记录,git 命令如下:

git log --since="2025-08-25" --until="2025-08-29"

代码如下:

import os
import subprocess
from datetime import datetime, timedeltadef open_git_bash_and_run_command(folder_path, git_command):# 检查文件夹路径是否存在if not os.path.exists(folder_path):print(f"错误:文件夹路径不存在:{folder_path}")returnif not os.path.isdir(folder_path):print(f"错误:路径不是一个文件夹:{folder_path}")return# Git Bash 的常见安装路径git_bash_paths = r"C:\Program Files\Git\bin\bash.exe"try:full_command = f'cd "{folder_path}" && {git_command}'# 执行subprocess.run([git_bash_paths, "-c", full_command],check=True  # 如果命令返回非零状态码,则抛出异常)print(f"【命令在 '{folder_path}' 中成功执行】")print("==========================================================================")except subprocess.CalledProcessError as e:print(f"命令执行失败,返回码: {e.returncode}")except FileNotFoundError as e:print(f"无法启动 Git Bash: {e}")except Exception as e:print(f"发生未知错误: {e}")def get_weekdays_of_current_week():# 获取今天的日期today = datetime.today()# 计算今天是星期几 (0=Monday, 1=Tuesday, ..., 6=Sunday)weekday = today.weekday()# 计算本周一的日期# 用今天的日期减去 weekday 天,就得到周一monday = today - timedelta(days=weekday)# 生成周一到周五的日期weekdays = []for i in range(5):  # 0=Monday, 1=Tuesday, 2=Wednesday, 3=Thursday, 4=Fridayday = monday + timedelta(days=i)# 格式化为 yyyy-MM-ddformatted_date = day.strftime("%Y-%m-%d")weekdays.append(formatted_date)return weekdaysif __name__ == "__main__":# 项目路径folder_path = [r"C:\Users\10765\Documents\info\code\now\yudao-cloud",r'C:\Users\10765\Documents\info\code\now\yudao-ui-admin-vue3']# 计算日期,本周一~周五week_dates = get_weekdays_of_current_week()# Git 命令git_command_template = """git log --since={since} --until={until}"""# 使用 .format() 方法替换占位符git_command = git_command_template.format(since=week_dates[0], until=week_dates[4])# Git 命令校验,以 git 开头if not git_command_template.lower().startswith("git "):print("警告:命令似乎不是以 'git' 开头,但仍将尝试执行。")# 循环执行for i in folder_path:open_git_bash_and_run_command(i, git_command)

其中,get_weekdays_of_current_week() 用于计算本周的日期,git 命令中包含双引号的用 .format() 替换,执行效果如下,本周没有日志

在这里插入图片描述

python 脚本在 windows 系统中的好处是能和 bat 程序一样,直接双击运行,因此如果工作中有需要定期执行 git 命令的场景,可以使用写一个 python 脚本,再配置环境变量,最后就能直接在运行中敲程序文件名执行,非常方便。


如下:

给脚本所在的文件夹配置了环境变量后,敲脚本文件名执行

在这里插入图片描述

弹出展示执行结果

在这里插入图片描述

需要注意在程序末尾加这一行,不然执行窗口会一闪而过

在这里插入图片描述

http://www.dtcms.com/a/356236.html

相关文章:

  • React 状态丢失:组件 key 用错引发的渲染异常
  • Rust 安装与运行指南
  • Custom SRP - LOD and Reflections
  • 柳州市委常委、统战部部长,副市长潘展东率队首访深兰科技集团新总部,共探 AI 赋能制造大市与东盟合作新局
  • Claude Code 完整手册:从入门、配置到高级自动化
  • 【python】相机输出图片时保留时间戳数据
  • Linux学习——sqlite3
  • 179-183动画
  • IntelliJ IDEA2025+启动项目提示 Failed to instantiate SLF4J LoggerFactory
  • 零基础json入门教程(基于vscode的json配置文件)
  • 【贪心算法】day4
  • HTML 核心标签全解析:从文本排版到媒体嵌入
  • 联想打印机2268w安装
  • 根据并发和响应延迟,实现语音识别接口自动切换需求
  • IP v 6
  • Linux下的软件编程——数据库
  • 编程与数学 03-004 数据库系统概论 06_需求分析
  • 【Flask】测试平台开发,初始化管理第一个页面开发-第三篇
  • Charles打开后,Pc电脑端浏览器显示Not implemented或没有网络
  • Linux Shell 脚本基础002
  • 使用 Java 替换和修改 PDF 文本的方法
  • 命令行操作:逻辑运算符、重定向与管道
  • TensorFlow 深度学习 | 使用子类 API 实现 Wide Deep 模型
  • 20250829_编写10.1.11.213MySQL8.0异地备份传输脚本+在服务器上创建cron任务+测试成功
  • MySQL-索引(下)
  • Linux -- 进程间通信【命名管道】
  • 基于博客系统的自动化测试项目
  • 使用TensorFlow Lite Mirco 跑mirco_speech语音识别yes/no
  • DVWA靶场通关笔记-命令执行(Impossible级别)
  • 大数据毕业设计选题推荐:基于北京市医保药品数据分析系统,Hadoop+Spark技术详解