samrocketman / gitlab-mirrors

A set of scripts adding the ability of managing remote mirrors to GitLab.
MIT License
818 stars 169 forks source link

Feature/gitlab.v4 #109

Closed kadimgh closed 6 years ago

kadimgh commented 6 years ago

Switching to gitlab.v4

samrocketman commented 6 years ago

Can you cherry-pick to development?

git checkout feature/gitlab.v4
# rename old branch
git branch -m old
git remote add upstream https://github.com/samrocketman/gitlab-mirrors
git fetch upstream
git checkout upstream/development -b feature/gitlab.v4
git cherry-pick old
git push origin -u --force feature/gitlab.v4

# optionally delete the old branch
git branch -D old