Useful Git commands for initial push.
In below example I use <https://gitlab.com/lvlaxpt/to-delete.git>. So change this to your Git URL.
Git global setup
1 2 |
git config --global user.name "your@mail.com" git config --global user.email "your@mail.com" |
Create a new repository
1 2 3 4 5 6 |
git clone https://gitlab.com/lvlaxpt/to-delete.git cd to-delete 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/lvlaxpt/to-delete.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/lvlaxpt/to-delete.git git push -u origin --all git push -u origin --tags |
Pull From Existing Repository
1 2 3 4 |
cd existing_folder git init git remote add origin https://gitlab.com/lvlaxpt/to-delete.git git pull origin master |