git push in existing repository code example

Example 1: git push existing repo

cd existing_folder
git init
git remote add origin https://gitlab.com/abc.git
git add .
git commit -m "Initial commit"
git push -u origin master

Example 2: push an existing github repository

git remote add origin https://github.com/Javlon002/asiance_data_mobile.git
git branch -M main
git push -u origin main

Example 3: git push existing code to new repository

git remote add origin <remote repository URL>

Example 4: push an existing repository from the command line

git remote add origin https://github.com/TaherSaid/my-pfe-informatique-mobile.git
git branch -M main
git push -u origin main

Example 5: git push to another repository

Create a new repo at github.
Clone the repo from fedorahosted to your local machine.
git remote rename origin upstream
git remote add origin URL_TO_GITHUB_REPO
git push origin master
Now you can work with it just like any other github repo. 
To pull in patches from upstream, 
simply run git pull upstream master && git push origin master.

Example 6: push an existing repository from the command line

cd #existing_dir
git init
git remote add origin https://github.com/ #Repo
git branch -M main
git push -u origin main