Help for this page

Select Code to Download


  1. or download this
    $ cd gitdir
    
    $ git clone https://git.example.com/project/repo.git
    
  2. 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)
    
  3. or download this
    $ git status
    
  4. or download this
    $ git add ...
    
    $ git commit ...
    
    $ git push
    
  5. or download this
    # Create a branch
    $ git branch branch_name
    ...
    
    # Publish a new tag (now appears in GitLab UI)
    $ git push origin 'v1.000'