This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# PURPOSE: solves an annoyance importing a google_kms_key_ring. This soaked up | |
# more minutes than it should have. the fix is pretty simple. | |
# ----------------------------------------------------------------------------- | |
# NOTE: only run this once | |
# ----------------------------------------------------------------------------- | |
# If you're in a GCP Organization AND you're creating a | |
# google_kms_key_ring inside of a dynamically-generated project THEN | |
# you don't need to run/worry about this. | |
# ----------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
sleep 1 | |
done |