Skip to content

Instantly share code, notes, and snippets.

View elonderin's full-sized avatar

thomas menzel elonderin

View GitHub Profile
@strayge
strayge / reverved_ports_hyperv.md
Created October 27, 2019 10:41
windows 10, port reserved for HyperV
@eeichinger
eeichinger / git toolkit
Last active March 29, 2024 06:18
Recursively execute git commands, find unpushed commits, ...
#
# Description:
# Various additional git utility commands
#
# git recursive <command>:
# from the current working folder search recursively for local git repos and run 'git <command>' on each of them.
#
# git recursive-exec <command>:
# from the current working folder search recursively for local git repos and run '<command>' on each of them.
#
@nicktoumpelis
nicktoumpelis / git-make-empty-root.sh
Last active January 22, 2024 14:03
Create an empty initial commit
git checkout --orphan temp_master
git rm -rf .
git commit --allow-empty -m 'Make initial root commit'
git rebase --onto temp_master --root master
git branch -D temp_master
@pete911
pete911 / rest response codes
Created January 10, 2013 17:34
diagram of rest response codes
http://i.stack.imgur.com/whhD1.png