blob: 82a0f1f756dd288bffcb05ac61a323cce479667b [file] [log] [blame]
r.c.ladan@gmail.comec238db2014-06-02 20:39:42 +00001#!/usr/bin/env 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