Skip to content

Instantly share code, notes, and snippets.

@tanevanwifferen
tanevanwifferen / find_dirty_gits
Created February 26, 2020 22:33 — forked from jaz303/find_dirty_gits
find all dirty git repos under the current working directory
#!/bin/bash
for dir in $(find . -name '.git' -type d)
do
dir=$(dirname $dir)
cd $dir
STATE=""
if [[ -n $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then

Keybase proof

I hereby claim:

  • I am tanevanwifferen on github.
  • I am tanevanwifferen (https://keybase.io/tanevanwifferen) on keybase.
  • I have a public key whose fingerprint is 4816 0D7B ADAF 1C76 3105 DAB3 6BF4 33EB 5886 77DC

To claim this, I am signing this object:

@tanevanwifferen
tanevanwifferen / designer.html
Last active August 29, 2015 14:11
designer
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;