How do I download the code from someone else's remote warehouse and upload it to my warehouse?

1: git clone the address of the cloned code
    2: git remote to view all remote warehouses
    3: git remote -v to view the remote factory warehouse address
    4: git remote rm origin After deleting the original remote warehouse ------- ready to add New remote warehouse
    5: git init
    6: git add -A
    7: git commit -m 'remarks'
    8: git status View submission status
    9: git remote add origin new address

Guess you like

Origin blog.csdn.net/weixin_46900256/article/details/124761384