This file contains hidden or 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 | |
# --------------------------- | |
# Author: Brandon Patram | |
# Date: 2020-02-15 | |
# | |
# Description: Strip flowtype types from js files | |
# | |
# Usage: strip-flowtype.sh [path to directory] | |
# Examples: |
This file contains hidden or 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 -e | |
# --------------------------- | |
# Author: Brandon Patram | |
# Date: 2018-06-19 | |
# | |
# Description: Pull a branch down without losing your current state | |
# Will stash your current changes and re-apply them after pulling | |
# down the target branch (or master if not defined) | |
# |
This file contains hidden or 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 | |
# --------------------------- | |
# Author: Brandon Patram | |
# Date: 2018-06-19 | |
# | |
# Description: List out merge commits and one off commits between | |
# the last tagged release and the current state of master. | |
# | |
# Usage: publish-release.sh [-y] [-h] [-v] [-V] | |
# Examples: |