🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# other ## HTTPS ## …or create a new repository on the command line ```text echo "# python3-" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/CoderAngle/python3-.git git push -u origin master ``` ## …or push an existing repository from the command line ```text git remote add origin https://github.com/CoderAngle/python3-.git git push -u origin master ``` ## SSH ## …or create a new repository on the command line ```text echo "# python3-" >> README.md git init git add README.md git commit -m "first commit" git remote add origin git@github.com:CoderAngle/python3-.git git push -u origin maste ``` ## …or push an existing repository from the command line ```text git remote add origin git@github.com:CoderAngle/python3-.git git push -u origin master ```