Skip to content

Instantly share code, notes, and snippets.

View james-pre's full-sized avatar
💻
Developing stuff

James Prevett james-pre

💻
Developing stuff
View GitHub Profile
@james-pre
james-pre / aliases.sh
Last active May 5, 2024 16:37
Useful `git` aliases
#!/bin/bash
# Adds some useful git aliases
echo "Adding aliases"
# Lists changes (i.e. commit messages)
# "- " prefixed before each line after any whitespace for easily making a markdown list
# You can optionally provide from and to tags.
# `git ls-changes` will list changes from the last tag to HEAD
# `git ls-changes tag_a` will list changes from tag_a to HEAD

Getting the game locally

The first step to doing anything with Blankstorm is to get a clone of the game locally.

Download and install Git from https://git-scm.com/downloads.

You should enable the "Git GUI here" and "Git Bash here" options if you are using Windows 10 as that will make step 2 easier. You must include support for Git LFS.

Find a folder where you would like to put your local clone, then open Git Bash (either using "Git Bash here" or using Windows terminal) from the right-click or context menu.