Skip to content

git

Overview

Universally-used version control

Availability

Cluster Module/Version
BOSE 2.27.0*
BGSC git/2.28.0

*This software is installed by default and does not require a module.

(BGSC ONLY) Note: You can simply use module load git to activate the most recently installed version of this software.

Sample Slurm Script

submit.sh
#!/bin/bash
# -- SLURM SETTINGS -- #
# [..] other settings here [..]

# The following settings are for the overall request to Slurm
#SBATCH --ntasks-per-node=32     # How many CPU cores do you want to request
#SBATCH --nodes=1                # How many nodes do you want to request

# -- SCRIPT COMMANDS -- #

# Load the needed modules
module load git    # Load Git - Not required on BOSE
git clone https://github.com/username/my-repo.git

Real Example

Has your research group used Git in a project? Contact the HPC Team and we'd be glad to feature your work.

Resources