github commands to push code to existing repo code example
Example 1: 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 2: git push existing code to new repository
git remote add origin <remote repository URL>