Migrate git from bitbucket to gitlab host on your server or other git server.
Step 1: Clone all branches
git clone --mirror <URL to my OLD repo location>
cd <New directory where your OLD repo was cloned>
Step 2: Create new empty repo
Step 3: Change origin url
git remote set-url origin <URL to my NEW repo location>
Step 4: Push all code to new git server
git push -f origin
Git command to update current account to correct account with new git server
git config user.email “[new email]”: Đổi email
git config user.email -> Xem email hiện tại
git config —global user.email: Xem thông tin email global
git config —global user.email “[new email]”: Đổi email áp dụng global
git config user.name “[new name]”: Đổi tên
git config user.name -> Xem tên hiện tại
Change user and origin url in Android Studio with new origin url:
http(s)://[username]@domain/repo.git
Nhận xét
Đăng nhận xét