loading...
Creating a Project

GitLab Environment — Creating a Project

Create and manage repositories inside your private GitLab group.

Create a new project

  1. Sign in to git.nexus-cloud.uk
  2. Open your group (created at provisioning)
  3. Click New projectCreate blank project
  4. Set the project name, visibility (Private recommended), and initialize with a README if you want

Clone to your computer

HTTPS (with token)

git clone https://git.nexus-cloud.uk/your-group/your-project.git
cd your-project

When prompted for a password, use a Personal Access Token — not your GitLab login password. See Access Tokens.

SSH

Add your SSH public key in GitLab → Preferences → SSH Keys, then:

git clone git@git.nexus-cloud.uk:your-group/your-project.git

Install Git

Windowsgit-scm.com/download/win

macOSxcode-select --install or Homebrew: brew install git

Linuxapt install git or dnf install git

Configure your identity once:

git config --global user.name "Your Name"
git config --global user.email "you@example.com"

Typical workflow

git add .
git commit -m "Describe your change"
git push origin main

Pushes to the default branch can trigger your CI/CD pipeline if configured — see CI/CD for FiveM.

Adding team members

As group owner, go to Group → Members and invite developers by username or email with the appropriate role (Developer, Maintainer, etc.).

Hasznosnak találta ezt a választ?

0 A felhasználók hasznosnak találták ezt (0 Szavazat)


support agent
How can i help you?