mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
added create repo
This commit is contained in:
parent
94370d6e2b
commit
e3d1f10ec3
3 changed files with 27 additions and 17 deletions
|
|
@ -11,6 +11,12 @@ def get_pre_commit_path():
|
|||
return os.path.join(get_root(), '.git/hooks/pre-commit')
|
||||
|
||||
|
||||
def get_env_path():
|
||||
return os.path.join(get_root(), '.pre-commit')
|
||||
|
||||
def create_pre_commit_package_dir():
|
||||
local.path(get_root() + '/.pre-commit').mkdir()
|
||||
|
||||
def create_pre_commit():
|
||||
path = get_pre_commit_path()
|
||||
pre_commit_file = pkg_resources.resource_filename('pre_commit', 'resources/pre-commit.sh')
|
||||
|
|
@ -20,8 +26,11 @@ def create_pre_commit():
|
|||
def remove_pre_commit():
|
||||
local.path(get_pre_commit_path()).delete()
|
||||
|
||||
def create_repo_in_env(name, git_repo_path):
|
||||
create_pre_commit_package_dir()
|
||||
|
||||
env_path = get_env_path()
|
||||
|
||||
|
||||
|
||||
|
||||
with local.cwd(env_path):
|
||||
local['git']['clone', git_repo_path, name]()
|
||||
print local.cwd.getpath()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue