Skip to content

Instantly share code, notes, and snippets.

View etc-tiago's full-sized avatar

Tiago Souza etc-tiago

View GitHub Profile
@etc-tiago
etc-tiago / Files changed since last tag
Created May 13, 2020 14:22 — forked from arnold-almeida/Files changed since last tag
GIT: Files changed since last tag
#!/bin/bash
unset GIT_DIR
cd /path/to/project
# Get our info....
LATEST_TAG=$(git describe --tags --abbrev=0)
CURRENT_REVISION=$(git describe)
NUMBER_FILES_CHANGED=$(git diff --name-only HEAD $LATEST_TAG | wc -l)
#FILES_CHANGED=$(git diff --name-only HEAD $LATEST_TAG)
@etc-tiago
etc-tiago / README.md
Created May 13, 2020 14:21 — forked from joyrexus/README.md
collapsible markdown

collapsible markdown?

CLICK ME

yes, even hidden code blocks!

print("hello world!")