How to import a project into gitlab

You can import a project into gitlab with the following commands.

// 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

// 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