Показаны сообщения с ярлыком gitlab. Показать все сообщения
Показаны сообщения с ярлыком gitlab. Показать все сообщения

вторник, 14 ноября 2023 г.

Git, GitLab, Delete, Remove, Project

https://microfluidics.utoronto.ca/gitlab/help/user/project/settings/index.md

Delete a project

You can mark a project to be deleted.

Prerequisite:

  • You must have the Owner role for a project.

To delete a project:

  1. On the left sidebar, at the top, select Search GitLab ({search}) to find your project.
  2. Select Settings > General.
  3. Expand Advanced.
  4. In the Delete this project section, select Delete project.
  5. On the confirmation dialog, enter the project name and select Yes, delete project.

This action deletes the project and all associated resources (such as issues and merge requests).

воскресенье, 2 октября 2016 г.

gitlab new

Git global setup

git config --global user.name ""
git config --global user.email ""

Create a new repository

git clone https://gitlab.com/groupe/gs.git
cd gs
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Existing folder or Git repository

cd existing_folder
git init
git remote add origin https://gitlab.com/groupe/gs.gitgit add .
git commit
git push -u origin master
2222222222222222

Git global setup

git config --global user.name ""
git config --global user.email ""

Create a new repository

git clone https://gitlab.com/user/gs.trade.git
cd gs.trade
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Existing folder or Git repository

cd existing_folder
git init
git remote add origin https://gitlab.com/user/gs.trade.git
git add .
git commit
git push -u origin master