2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-09 08:30:39 +00:00
bench/bench/commands/git.py
2021-11-12 18:56:24 +05:30

38 lines
1009 B
Python

# imports - standard imports
import os
import subprocess
# imports - module imports
from bench.bench import Bench
from bench.app import get_repo_dir
from bench.utils import set_git_remote_url
from bench.utils.app import get_remote
# imports - third party imports
import click
@click.command('remote-set-url', help="Set app remote url")
@click.argument('git-url')
def remote_set_url(git_url):
set_git_remote_url(git_url)
@click.command('remote-reset-url', help="Reset app remote url to frappe official")
@click.argument('app')
def remote_reset_url(app):
git_url = f"https://github.com/frappe/{app}.git"
set_git_remote_url(git_url)
@click.command('remote-urls', help="Show apps remote url")
def remote_urls():
for app in Bench(".").apps:
repo_dir = get_repo_dir(app)
if os.path.exists(os.path.join(repo_dir, '.git')):
remote = get_remote(app)
remote_url = subprocess.check_output(['git', 'config', '--get', f'remote.{remote}.url'], cwd=repo_dir).strip()
print(f"{app}\t{remote_url}")