Sha256: f5fab06aa5fe1d5b637b8c0ab231506353de8284a9640959844271095dd45d6b

Contents?: true

Size: 934 Bytes

Versions: 53

Compression:

Stored size: 934 Bytes

Contents

#!/usr/bin/env bash

. common_demo_functions.sh

TDIR=$(mktemp --tmpdir -d demo_repo.XXXXXXXXXX)
trap "rm -rf $TDIR" EXIT

cd $TDIR
silent git clone "$REMOTE" .
silent git reset --hard stage_1
silent git update-ref refs/remotes/origin/master stage_1
silent git tag -d $(git tag -l 'stage_*')
silent git checkout origin/master
silent git branch -d master
silent git config color.ui always

if [[ ! "$BLANK_DEMO"  ]]
then
  silent git new-branch cool_feature

  c "Add widget"
  c "Refactor spleen"
  silent git tag spleen_tag

  c "another improvement"

  silent git new-branch --upstream_current subfeature
  c "slick commenting action"
  c "integrate with CoolService"

  silent git checkout cool_feature
  c "Respond to CL comments"

  silent git new-branch fixit
  c "Epic README update"
  c "Add neat feature"

  silent git new-branch --upstream_current frozen_branch
  c "a deleted file"
  c "modfile"
  c "FREEZE.unindexed"
fi

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
libv8-8.4.255.0.1 vendor/depot_tools/man/src/demo_repo.sh
libv8-8.4.255.0 vendor/depot_tools/man/src/demo_repo.sh
libv8-7.8.279.23.0beta1 vendor/depot_tools/man/src/demo_repo.sh
libv8-7.4.288.28.0beta1 vendor/depot_tools/man/src/demo_repo.sh
libv8-7.3.492.27.3beta1 vendor/depot_tools/man/src/demo_repo.sh
libv8-7.3.492.27.1 vendor/depot_tools/man/src/demo_repo.sh
libv8-7.3.492.27.0 vendor/depot_tools/man/src/demo_repo.sh
libv8-7.3.492.27.0beta1 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.7.288.46.1 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.7.288.46.0 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.7.288.46.1beta0 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.3.292.48.1 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.3.292.48.0 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.3.292.48.0beta2 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.3.292.48.0beta1 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.2.414.42.1 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.2.414.42.0 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.2.414.42.0beta1 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.0.286.54.3 vendor/depot_tools/man/src/demo_repo.sh
libv8-6.0.286.54.2 vendor/depot_tools/man/src/demo_repo.sh