Skip to content

Instantly share code, notes, and snippets.

View Sephsekla's full-sized avatar
💻
Tea => Code

Joe Bailey-Roberts Sephsekla

💻
Tea => Code
View GitHub Profile
@Sephsekla
Sephsekla / git-cleanup-merged.sh
Created October 17, 2022 09:16
git cleanup-merged - Deletes all local branches that are fully merged into the remote HEAD branch.
#!/bin/bash -e
# git cleanup-merged
# Deletes all local branches that are fully merged into the remote HEAD branch.
# Useful for a git flow workflow, allows quick deletion of completed feature branches.
CURRENT_BRANCH=$(git branch --show-current)
REMOTE_HEAD=$(git symbolic-ref --short refs/remotes/origin/HEAD)
DEFAULT_BRANCH=${REMOTE_HEAD#"origin/"}
@Sephsekla
Sephsekla / modlist.csv
Created February 14, 2021 13:59
Operation Anti Loneliness Modlist
#Mod_Priority #Mod_Status #Mod_Name
0000 + DLC: HearthFires
0001 + DLC: Dragonborn
0002 + DLC: Dawnguard
0003 + Unofficial Skyrim Special Edition Patch
0004 + SKSE64
0005 + UIExtensions
0006 + .NET Script Framework
0008 + Address Library for SKSE Plugins
0009 + Modern Brawl Bug Fix
@Sephsekla
Sephsekla / create-dome-app
Created October 21, 2020 15:47
create-dome-app
PROJECT=$(pwd);
cd ~/
mkdir -p create-dome-app-master && cd create-dome-app-master
if [ ! -d .git ]; then
cd ../
rm create-dome-app-master
git clone https://github.com/avivbeeri/dome.git ./create-dome-app-master && cd create-dome-app-master && make;
else
git fetch