Git Command line instructions
Git global setup
1
2
| git config --global user.name "username"
git config --global user.email "email"
|
Create a new repository
1
2
3
4
5
6
| git clone https://gitlab.com/username/repository.git
cd glare
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
|
Push an existing folder
1
2
3
4
5
6
| cd existing_folder
git init
git remote add origin https://gitlab.com/username/repository.git
git add .
git commit -m "Initial commit"
git push -u origin master
|
Push an existing Git repository
1
2
3
4
5
| cd existing_repo
git remote rename origin old-origin
git remote add origin https://gitlab.com/username/repository.git
git push -u origin --all
git push -u origin --tags
|