How to add remote github repo into existing local dictionary?2023-01-301234567echo "# example" >> README.mdgit initgit add README.mdgit commit -m "first commit"git branch -M maingit remote add origin https://github.com/<your-username>/<your-repo-name>.gitgit push -u origin main