Created
December 7, 2018 18:17
-
-
Save sarvar/a24c266b55646b5fd735fb8799cbde2e to your computer and use it in GitHub Desktop.
Import an existing git project into GitLab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git init | |
| git remote add origin +"githublink" | |
| git add . | |
| git commit -m "Initial Commit" | |
| git pull origin master | |
| git push origin master | |
| git push -u gitlab --all | |
| git push -u gitlab --tags |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment