1 Star 0 Fork 183

hermesgx/mootdx

forked from bopo/mootdx 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
fabfile.py 648 Bytes
一键复制 编辑 原始数据 按行查看 历史
bopo 提交于 2021-09-18 14:35 . clear code .
from fabric.api import local
from fabric.api import task
from git import Repo
repo = Repo(".")
@task
def test():
"""push github rev"""
local('py.test tests -v')
@task(alias='gp')
def push(branch=repo.active_branch.name):
"""# push github rev"""
local(f'git push origin {branch} --tags')
local(f'git push github {branch} --tags')
@task(alias='gl')
def pull(branch=repo.active_branch.name):
"""# push github rev"""
local(f'git pull origin {branch} --tags')
local(f'git pull github {branch} --tags')
@task
def help():
"""使用帮助"""
text = open('README.rst').read()
text = text
print(text)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/hermesgx/mootdx.git
git@gitee.com:hermesgx/mootdx.git
hermesgx
mootdx
mootdx
master

搜索帮助