美文网首页
python gitlab 最近的变动分支

python gitlab 最近的变动分支

作者: never_b6a7 | 来源:发表于2021-10-20 19:27 被阅读0次

    使用python-gitlab库 获取最新的提交分支

        client = gitlab.Gitlab('http://xxxxx.com.cn',private_token='xxxxxxxx', timeout=2, api_version='4')
        client.auth()
        pro="dxxx/dfdfd/dxdd"
        print (pro)
        #pdb.set_trace()
        project = client.projects.get(pro)
        #branches=project.branches.list()
        #print (branches[-1])
        #for z in branches:
        #    print(z)
        # 最新提交的分支号
        re=project.commits.list(page=0, per_page=3,as_list=True)[0].refs("branch")
        print (re)
    

    相关文章

      网友评论

          本文标题:python gitlab 最近的变动分支

          本文链接:https://www.haomeiwen.com/subject/hbxxaltx.html