Git Push Existing Repo

Jerry PM
2 min readNov 12, 2023

For a new app on Github

Photo by Mohammad Rahmani on Unsplash

In new flow on GitHub, when you create new Repo you not guide like before, this tutorial for you what to push your app to new repo on Github example this Use repo “SosialWave” app.

~ app: $git init
~ app: $cd folder/NewApp
~ app: $git remote add origin https://github.com/usergit/sosialWave.git
~ app: $git add .
~ app: $git commit -m "first commit"
~ app: $git push -f origin main

This git if you want to change remote repo, check the repo status using “git remote -v” if a blank is not set yet, and if not nil, there is a data

~ app: $git remote -v
~ app: $git remote set-url origin new-url

for example for changing url origin remote

~app: $git remote set-url origin https://github.com/yourusername/new-repo.git

That’s it! You’ve successfully pushed your app to a new GitHub repository and learned how to change the remote repository URL when needed.

Photo by Caspar Camille Rubin on Unsplash

Transform Your Ideas into Reality with Expert iOS & Flutter Development! 🚀 Are you looking to bring your app concept to life? I specialize in crafting exceptional iOS and Flutter applications that stand out in the digital world. Let’s collaborate to turn your vision into a stunning, functional app. Contact me today to start your app development journey!”

https://www.upwork.com/freelancers/~01b22fa418e8c595b9

--

--