Skip to content

Instantly share code, notes, and snippets.

@mynktl
mynktl / create_pr.sh
Last active May 13, 2020 10:52
Script to create a pull request in github
#!/bin/bash
set -e
if [ $# -ne 3 ]; then
echo "Insufficient arguments"
echo "Usage: $0 github-org/repo-name production-branch your-branch"
echo "Example: $0 openebs/velero-plugin master fix-123"
exit 1
fi