python操作git,代码发布流程

代码发布流程

  • 服务器管理
  • 项目管理
  • 发布任务管理
  • django+channels发布/部署

python如何操作git

安装

pip3 install gitpython

基本使用

# 从远处仓库下载代码到本地
import os
from git.repo import Repo

# 创建本地存储地址
download_path = os.path.join(‘jason‘,‘NB‘)
# 从远程仓库下载代码
Repo.clone_from(‘https://github.com/DominicJi/TeachTest.git‘,to_path=download_path,branch=‘master‘)

常用方法大全

# ############## 2. pull最新代码 ##############
import os
from git.repo import Repo

local_path = os.path.join(‘jason‘, ‘NB‘)
repo = Repo(local_path)
repo.git.pull()

# ############## 3. 获取所有分支 ##############
import os
from git.repo import Repo

local_path = os.path.join(‘jason‘, ‘NB‘)
repo = Repo(local_path)

branches = repo.remote().refs
for item in branches:
    print(item.remote_head)

# ############## 4. 获取所有版本 ##############
import os
from git.repo import Repo

local_path = os.path.join(‘jason‘, ‘NB‘)
repo = Repo(local_path)

for tag in repo.tags:
    print(tag.name)

# ############## 5. 获取所有commit ##############
import os
from git.repo import Repo

local_path = os.path.join(‘jason‘, ‘NB‘)
repo = Repo(local_path)

# 将所有提交记录结果格式成json格式字符串 方便后续反序列化操作
commit_log = repo.git.log(‘--pretty={"commit":"%h","author":"%an","summary":"%s","date":"%cd"}‘, max_count=50,
                          date=‘format:%Y-%m-%d %H:%M‘)
log_list = commit_log.split("\n")
real_log_list = [eval(item) for item in log_list]
print(real_log_list)

# ############## 6. 切换分支 ##############
import os
from git.repo import Repo

local_path = os.path.join(‘jason‘, ‘NB‘)
repo = Repo(local_path)

before = repo.git.branch()
print(before)
repo.git.checkout(‘master‘)
after = repo.git.branch()
print(after)
repo.git.reset(‘--hard‘, ‘854ead2e82dc73b634cbd5afcf1414f5b30e94a8‘)

# ############## 7. 打包代码 ##############
with open(os.path.join(‘jason‘, ‘NB.tar‘), ‘wb‘) as fp:
    repo.archive(fp)

封装成类

import os
from git.repo import Repo
from git.repo.fun import is_git_dir

class GitRepository(object):
    """
    git仓库管理
    """

    def __init__(self, local_path, repo_url, branch=‘master‘):
        self.local_path = local_path
        self.repo_url = repo_url
        self.repo = None
        self.initial(repo_url, branch)

    def initial(self, repo_url, branch):
        """
        初始化git仓库
        :param repo_url:
        :param branch:
        :return:
        """
        if not os.path.exists(self.local_path):
            os.makedirs(self.local_path)

        git_local_path = os.path.join(self.local_path, ‘.git‘)
        if not is_git_dir(git_local_path):
            self.repo = Repo.clone_from(repo_url, to_path=self.local_path, branch=branch)
        else:
            self.repo = Repo(self.local_path)

    def pull(self):
        """
        从线上拉最新代码
        :return:
        """
        self.repo.git.pull()

    def branches(self):
        """
        获取所有分支
        :return:
        """
        branches = self.repo.remote().refs
        return [item.remote_head for item in branches if item.remote_head not in [‘HEAD‘, ]]

    def commits(self):
        """
        获取所有提交记录
        :return:
        """
        commit_log = self.repo.git.log(‘--pretty={"commit":"%h","author":"%an","summary":"%s","date":"%cd"}‘,
                                       max_count=50,
                                       date=‘format:%Y-%m-%d %H:%M‘)
        log_list = commit_log.split("\n")
        return [eval(item) for item in log_list]

    def tags(self):
        """
        获取所有tag
        :return:
        """
        return [tag.name for tag in self.repo.tags]

    def change_to_branch(self, branch):
        """
        切换分值
        :param branch:
        :return:
        """
        self.repo.git.checkout(branch)

    def change_to_commit(self, branch, commit):
        """
        切换commit
        :param branch:
        :param commit:
        :return:
        """
        self.change_to_branch(branch=branch)
        self.repo.git.reset(‘--hard‘, commit)

    def change_to_tag(self, tag):
        """
        切换tag
        :param tag:
        :return:
        """
        self.repo.git.checkout(tag)

if __name__ == ‘__main__‘:
    local_path = os.path.join(‘codes‘, ‘luffycity‘)
    repo = GitRepository(local_path,remote_path)
    branch_list = repo.branches()
    print(branch_list)
    repo.change_to_branch(‘dev‘)
    repo.pull()

原文地址:https://www.cnblogs.com/KrisYzy/p/12332837.html

时间: 2024-10-27 12:17:27

python操作git,代码发布流程的相关文章

代码发布项目(三)——python操作git、代码发布流程(服务器管理、项目管理)

一.python如何操作git 如果你想用python代码操作git需要下载一个模块 安装 pip install gitpython 基本使用 # 从远处仓库下载代码到本地 import os from git.repo import Repo # 创建本地存储地址,没有会自动创建文件 download_path = os.path.join('jason','NB') # 从远程仓库下载代码 Repo.clone_from('https://github.com/DominicJi/Teac

持续集成开篇之(一)代码发布流程

最近在网上看了不少有关CI/CD的文章,其实基本是雷同的,且内容也不是非常完善.确实,当前持续集成用到的开源工具无非还是Git.Jenkins.Ansible(Fabric)这些,不同的应该是各公司的技术框架差异,发布审核流程不同,从而使配置细节也有较大不同.接下来我要分享的一系列文章均是围绕生产版本发布.集群中间件搭建以及监控来写,并且都是这些年(2014-至今)我们一直还在用的技术(包括具体环境搭建以及前后端发布等细节),欢迎拍砖,共同探讨. 我们一直沿用的一套流程如下: 0.在公司内部搭建

python实现git代码更新后发送邮件通知

当一个团队使用git进行开发时,一旦代码更新就需要通知团队成员.现在利用git的钩子文件以及python写的脚本自动去帮我们做成这件事. git的钩子文件分为服务器(远端仓库)钩子文件和客户端(本地)钩子文件,进行脚本编写时要区分好不同端所用的钩子文件.编写错误会导致邮件无法发送, 一般来讲,只编写服务端的钩子文件,服务端钩子文件主要有三种: pre-receiver: 处理来自客户端的推送操作时,首先执行的钩子文件 update: 与pre-receiver类似,会为每一个被推送的分支各运行一

git代码提交流程

1.进入我的项目文件夹所在目录: 2.git status 查看我修改过的文件: 3.git add -A 将修改的文件全部添加, git add 文件名  只添加指定的文件名: 4.git commit 进入另外一个编辑页面,在命令行的最上面一行输入下面的文字: [file文件名]   Add basic logic(自己添加上去的功能) 该命令行界面可以通过点击wq按键来退出 5.git pull --rebase 查看自己的代码与原来的代码有无冲突: 6.如果没有冲突可以直接在线上push

用Python操作git命令

import os from git.repo import Repo from git.repo.fun import is_git_dir class GitRepository(object): """ git仓库管理 """ def __init__(self, local_path, repo_url, branch='master'): self.local_path = local_path self.repo_url = repo

自动化代码发布系统实现

日常运维问题 在我日常运维工作中,代码发布可能是最普遍的一项工作之一,尤其是网页代码的更新,碎片化发布需求非常频繁.在前期开发人员比较少时,还可以由自己来上服务器通过脚本来发布代码.但随着公司项目的增多,更多的开发人员加入到公司,发布代码需求开始增多,这就占用了我大部分时间,经常的被打断其它工作来发布代码,非常地不爽,然后开始想解决方法. 尝试解决问题 当然,发布代码肯定是运维的职责之一了,但频繁的发布导致运维大部分时间浪费在重复的操作上,非常的不值得.基于此,开始限制代码发布频率,要求把不是很

代码发布系统实现

文章目录 [隐藏] 关于项目开源 日常运维问题 尝试解决问题 最终解决方案 开源技术使用 代码发布流程 最后想说的话 关于项目开源 由于挺多同学请求开源此项目,在这里说明一下:其实本人是想开源的,由于是本人写的第一个运维方面的系统,且写这个项目的时间时间紧,只达到了可以使用的程度,完全没有达到开源的要求,希望理解! 日常运维问题 在我日常运维工作中,代码发布可能是最普遍的一项工作之一,尤其是网页代码的更新,碎片化发布需求非常频繁.在前期开发人员比较少时,还可以由自己 来上服务器通过脚本来发布代码

代码发布

代码发布系统 腾讯(蓝鲸) http://bk.tencent.com Murder(推特)  基于管理工具[capistrano]+比特流[bittornado]                             Ruby                  python 代码发布流程 l 程序员开发 l 合并代码 l 发布 --编译 --非编译 --推送(扩展)到指定服务器  注册事件       在互联网产品的发布过程中也较多采用此种发布方式:产品的发布过程不是一蹴而就,而是逐步扩大使

代码发布系统二

服务端如何给客户端推送消息 轮询(效率低.基本不用) """ 让客户端浏览器定时朝服务端发送请求数据的请求(比如每隔5s一次) 不足之处 消息延迟明显 消耗资源 """ 长轮询(兼容性好.使用较多) """ 服务端给每一个第一次来链接的客户端浏览器创建一个队列,之后客户端浏览器通过ajax朝各自的队列索要数据,如果没有数据会阻塞但是不会一直阻塞(pending),用了timeout加异常处理经过30s自动回去然后再次