Git Lab



Git global setup
git config --global user.name "divakar singh"
git config --global user.email "divakar1592singh@gmail.com"
Create a new repository
git clone https://gitlab.com/divakar1592singh/Across.git
cd Across
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 https://gitlab.com/divakar1592singh/Across.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 https://gitlab.com/divakar1592singh/Across.git
git push -u origin --all
git push -u origin --tags
Some more
git pull
git push origin --force --all

Comments

Popular posts from this blog

gitlab-1

Github-1 : Basic Setup

Github-2 : Setting Up Github