企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# 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 ```