Hi all,
I am getting back into the groove of development work after a decade, so I am a bit rusty on my fundamentals. I would appreciate all your help!
I am wondering if the cloned repository should also be “made my own” so that when I commit and push changes, it will appear in my Github profile?
Here are the commands that ChatGPT gave me in order to clone the repository properly:
Remove origin if you don’t need upstream as origin
git remote remove origin
Add your new repo as origin (SSH example)
git remote add origin git@github.com:username/fast-prototyping-of-genai-apps-with-streamlit.git
Push current branch (replace main with your branch name if different)
git push -u origin main
Is this correct? I would appreciate any guidance!
Thanks,
Omar