Skip to content

Instantly share code, notes, and snippets.

View pmig's full-sized avatar
🧊
Glasskube

Philip Miglinci pmig

🧊
Glasskube
View GitHub Profile
@pmig
pmig / # glasskube - 2024-03-22_10-01-54.txt
Created April 11, 2024 08:41
glasskube on Manjaro Linux - Homebrew build logs
Homebrew build logs for glasskube on Manjaro Linux
Build date: 2024-03-22 10:01:54
#!/bin/zsh
# use gitk to explore your changes
# this skript uses zsh + .oh-my-zsh shortcuts (check them out - they are awesome anyway)
# you want to meld your commits?
# $git rebase -i HASH
# HASH = last commit to meld (you need to pick the latest)
GAS_TIME=$(date "+%Y-%m-%d %H:%M:%S")
#!/bin/zsh
# pmig.at
# this skript uses zsh + .oh-my-zsh shortcuts (check them out - they are awesome anyway)
usage () {
echo "USE IT:"
echo "zsh auto-rsync LOCALFOLDER REMOTE PATH"
echo "e.g. \"zsh auto-rsync test me@mytestsever:parentfortest\""
exit
@pmig
pmig / git-loglive
Created June 18, 2013 20:05 — forked from tlberglund/git-loglive
only show the last 20 commits
#!/bin/bash
while :
do
clear
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative -20
sleep 1
done