Lines Matching refs:Path
19 from pathlib import Path
25 def _run(cmd: List[str], cwd: Path) -> str: argument
30 def fetch(proj_path: Path, remote_names: List[str]) -> None: argument
40 def add_remote(proj_path: Path, name: str, url: str) -> None: argument
51 def remove_remote(proj_path: Path, name: str) -> None: argument
56 def list_remotes(proj_path: Path) -> Dict[str, str]: argument
74 def get_sha_for_branch(proj_path: Path, branch: str): argument
79 def get_commits_ahead(proj_path: Path, branch: str, argument
90 def get_commit_time(proj_path: Path, commit: str) -> datetime.datetime: argument
96 def list_remote_branches(proj_path: Path, remote_name: str) -> List[str]: argument
107 def list_remote_tags(proj_path: Path, remote_name: str) -> List[str]: argument
119 def get_default_branch(proj_path: Path, remote_name: str) -> str: argument
141 def merge(proj_path: Path, branch: str) -> None: argument
151 def add_file(proj_path: Path, file_name: str) -> None: argument
156 def delete_branch(proj_path: Path, branch_name: str) -> None: argument
161 def start_branch(proj_path: Path, branch_name: str) -> None: argument
166 def commit(proj_path: Path, message: str) -> None: argument
171 def checkout(proj_path: Path, branch_name: str) -> None: argument
176 def push(proj_path: Path, remote_name: str, has_errors: bool) -> None: argument