From 1eb9770fba4ceb89d5a3eb24dc7fdfffcc606bdf Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Thu, 14 Jan 2021 23:45:38 -0500 Subject: [PATCH] [ADD] makefile change remote url https/git --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Makefile b/Makefile index 5a6645e..dc22652 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,24 @@ else endif endif +############## +# Git repo # +############## +# clear all repo DANGER +.PHONY: repo_clear_all +repo_clear_all: + ./script/clean_repo_manifest.sh + +# change all repo to ssh on all remote +.PHONY: repo_use_all_ssh +repo_use_all_ssh: + ./script/git_change_remote_https_to_git.py + +# change all repo to https on all remote +.PHONY: repo_use_all_https +repo_use_all_https: + ./script/git_change_remote_https_to_git.py --git_to_https + ################### # Configuration # ###################