HPC Lab Administration

Directions for new and existing users of the HPC lab.

Setting up a new project repository

  1. Get an account on 10.107.88.11
  2. Get added to the git group
  3. Log into 10.107.88.11. Verify by running the command:
    groups
  4. Go to the directory where you will create your project:
    cd /storage2/git
  5. Create a git repository for your project:
    git init --bare --shared=group project-name.git
  6. Change the group that your project belongs to so that all HPC lab users can access it:
    chgrp -R git project-name.git
  7. Give R and W permissions to your repository, so that others can contribute:
    chmod -R g+wX project-name.git

Your project repository is now setup, and it is available at:
/storage2/git/project-name.git

All further work will be from your work machine only.

Contributing to your project

On your work machine:

Directory Structure Guidelines

Attempting to mandate a directory structure is always a tricky business; what follows is a set of guidelines: