У меня есть каталог на моем ноутбуке, и он не пустой.Я хотел бы сохранить его в облаках GitLab в новом хранилище m, как это сделать?
Просто нажмите на проект, чтобы создать новый, согласно https://docs.gitlab.com/ee/gitlab-basics/create-project.html#push-to-create-a-new-project
. Это можно сделать с помощью SSH или HTTPS: ## Git push using SSH git push --set-upstream git@gitlab.example.com:namespace/nonexistent-project.git master ## Git push using HTTPS git push --set-upstream https://gitlab.example.com/namespace/nonexistent-project.git master` После нажатиязаканчивается успешно, удаленное сообщение будет указывать команду для установки удаленного и URL-адрес нового проекта: remote: remote: The private project namespace/nonexistent-project was created. remote: remote: To configure the remote, run: remote: git remote add origin https://gitlab.example.com/namespace/nonexistent-project.git remote: remote: To view the project, visit: remote: https://gitlab.example.com/namespace/nonexistent-project remote:
. Это можно сделать с помощью SSH или HTTPS:
## Git push using SSH git push --set-upstream git@gitlab.example.com:namespace/nonexistent-project.git master ## Git push using HTTPS git push --set-upstream https://gitlab.example.com/namespace/nonexistent-project.git master`
После нажатиязаканчивается успешно, удаленное сообщение будет указывать команду для установки удаленного и URL-адрес нового проекта:
remote: remote: The private project namespace/nonexistent-project was created. remote: remote: To configure the remote, run: remote: git remote add origin https://gitlab.example.com/namespace/nonexistent-project.git remote: remote: To view the project, visit: remote: https://gitlab.example.com/namespace/nonexistent-project remote:
Создание репо на Gitlab, клонирование репо на вашем ПК, копирование вашего проекта в клонированное репо.Подтвердить -> Push.