我被要求与一位同事一起编写一个程序,以使某些项目迁移自动化。
我们有一个函数应该创建一个gitlab存储库(根据我的理解为一个项目)。参数将使用项目的代号和实际名称作为参数。
我看过gitlab文档,可以从命令行创建一个新项目:
git push --set-upstream https://gitlab.example.com/namespace/nonexistent-project.git master
我一直在尝试几种写方法,但是它总是以致命错误,未找到项目等结尾。
git push --set-upstream https://name.of.space/gitlab/username/testproject.git master
git push --set-upstream https://name.of.space/gitlab/username/someSubDirectory/codeName/projectest.git
我写错了吗?
感谢您的阅读,并提前对我的英语感到抱歉。