- or download this
$ cd gitdir
$ git clone https://git.example.com/project/repo.git
- or download this
$ cd gitdir/repo
...
$ git remote -v
origin https://username@git.example.com/project/repo.git (fetch)
origin https://username@git.example.com/project/repo.git (push)
- or download this
$ git status
- or download this
$ git add ...
$ git commit ...
$ git push
- or download this
# Create a branch
$ git branch branch_name
...
# Publish a new tag (now appears in GitLab UI)
$ git push origin 'v1.000'