Skip to content

Instantly share code, notes, and snippets.

View jrbenito's full-sized avatar

Josenivaldo Benito Junior jrbenito

View GitHub Profile
@jrbenito
jrbenito / .gitignore
Last active May 5, 2016 17:15 — forked from spacemonkey/.gitignore
.gitignore for Hexo powered websites
.DS_Store
Thumbs.db
db.json
*.log
node_modules/
public/
.deploy*/
@jrbenito
jrbenito / release.sh
Last active August 23, 2016 13:35 — forked from bclinkinbeard/release.sh
Bash script to automate the Git Flow tag/release process
#!/bin/bash
# current Git branch
branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')
# v1.0.0, v1.5.2, etc.
versionLabel=v$1
# establish branch and tag name variables
devBranch=develop