Skip to content

Instantly share code, notes, and snippets.

@mathieucaroff
Created January 28, 2019 22:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mathieucaroff/237d00677d1025b3da47d0b53ced57b3 to your computer and use it in GitHub Desktop.
Save mathieucaroff/237d00677d1025b3da47d0b53ced57b3 to your computer and use it in GitHub Desktop.
A copy-past of the default helper snippets shown on Gitlab in empty repositories (2019-01-28)

Command line instructions

Git global setup

git config --global user.name "Mathieu CAROFF"
git config --global user.email "mathieu.caroff@free.fr"

Create a new repository

git clone git@gitlab.com:caroff/pi-server.git
cd pi-server
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Existing folder

cd existing_folder
git init
git remote add origin git@gitlab.com:caroff/pi-server.git
git add .
git commit -m "Initial commit"
git push -u origin master

Existing Git repository

cd existing_repo
git remote rename origin old-origin
git remote add origin git@gitlab.com:caroff/pi-server.git
git push -u origin --all
git push -u origin --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment