NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
# 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 ```