How to import a project into gitlab

How to import a project into gitlab

It is easy to import a project from GitHub to GitLab using GitLab's built-in import tool or manually via the git command line. In this post, we show the manual option using only 4 simple git command lines.

// show the remote repository url
git remote -v

// make a copy of the original url
git remote rename origin old-origin

// add the new repository url
git remote add origin git@gitlab.com:yuetloo/walletconnect-wallet.git

// push files to the new repository
git push -u origin --all

AI image by freepik

Similar Posts