You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
335 B
12 lines
335 B
!/bin/bash |
|
# |
|
# Generates a bundle of this project to share with partners. It produces a file |
|
# with the name chre-$HEAD_HASH.bundle where $HEAD_HASH is the current ToT |
|
# commit hash. |
|
# |
|
# Usage: |
|
# ./bundle_chre.sh |
|
|
|
BRANCH=goog/master |
|
HEAD_HASH=`git describe --always --long $BRANCH` |
|
git bundle create chre-$HEAD_HASH.bundle $BRANCH
|
|
|