blob: 397d1836ec25d3719c3d9edfaf76f3285f8e8865 [file] [log] [blame]
iannucci@chromium.org3c669832014-04-11 18:37:08 +00001#!/bin/bash
iannucci@chromium.org21980022014-04-11 04:51:49 +00002. demo_repo.sh
3
4add deleted_file
5add unstaged_deleted_file
6add modified_file
7c "demo changes"
8
9add added_file_with_unstaged_changes
10echo bob >> added_file_with_unstaged_changes
11
12add added_file
13echo bob >> modified_file
14silent git rm deleted_file
15rm unstaged_deleted_file
16touch unadded_file
17
18run git status --short
19run git freeze
20run git status --short
21run git log -n 2 --stat
22run git thaw
23run git status --short