Skip to content

Instantly share code, notes, and snippets.

View ErykDarnowski's full-sized avatar
🔧
Tinkering

Eryk Darnowski ErykDarnowski

🔧
Tinkering
View GitHub Profile
@ErikHumphrey
ErikHumphrey / New Release.sh
Created June 17, 2019 19:32
Bash script to push new releases easily
#!/bin/bash
current_date=`date +%Y-%m-%d`
cd
# Replace with path to repository
cd projects/sandbox
git fetch --tags
latest=`git describe --abbrev=0`