Mercurial > hg > hg-git
annotate tests/test-file-removal.t @ 513:d298abb841ac
tests: unify test-push-r
author | David M. Carr <david@carrclan.us> |
---|---|
date | Mon, 10 Sep 2012 00:27:56 -0400 |
parents | 4b64fc97ec7b |
children | bc7b18c2e5ef |
rev | line source |
---|---|
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
1 # Fails for some reason, need to investigate |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
2 # $ "$TESTDIR/hghave" git || exit 80 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
3 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
4 bail if the user does not have dulwich |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
5 $ python -c 'import dulwich, dulwich.repo' || exit 80 |
18
feab56c76c92
Add a basic test for cloning.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
6 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
7 bail early if the user is already running git-daemon |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
8 $ ! (echo hi | nc localhost 9418 2>/dev/null) || exit 80 |
18
feab56c76c92
Add a basic test for cloning.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
9 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
10 $ echo "[extensions]" >> $HGRCPATH |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
11 $ echo "hggit=$(echo $(dirname $TESTDIR))/hggit" >> $HGRCPATH |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
12 $ echo 'hgext.graphlog =' >> $HGRCPATH |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
13 $ echo 'hgext.bookmarks =' >> $HGRCPATH |
259
8b9fc1b1cc40
tests: Fix tests with new repo layout.
Augie Fackler <durin42@gmail.com>
parents:
202
diff
changeset
|
14 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
15 $ GIT_AUTHOR_NAME='test'; export GIT_AUTHOR_NAME |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
16 $ GIT_AUTHOR_EMAIL='test@example.org'; export GIT_AUTHOR_EMAIL |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
17 $ GIT_AUTHOR_DATE="2007-01-01 00:00:00 +0000"; export GIT_AUTHOR_DATE |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
18 $ GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"; export GIT_COMMITTER_NAME |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
19 $ GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"; export GIT_COMMITTER_EMAIL |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
20 $ GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"; export GIT_COMMITTER_DATE |
18
feab56c76c92
Add a basic test for cloning.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
21 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
22 $ count=10 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
23 $ commit() |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
24 > { |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
25 > GIT_AUTHOR_DATE="2007-01-01 00:00:$count +0000" |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
26 > GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE" |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
27 > git commit "$@" >/dev/null 2>/dev/null || echo "git commit error" |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
28 > count=`expr $count + 1` |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
29 > } |
18
feab56c76c92
Add a basic test for cloning.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
30 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
31 $ mkdir gitrepo |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
32 $ cd gitrepo |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
33 $ git init | python -c "import sys; print sys.stdin.read().replace('$(dirname $(pwd))/', '')" |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
34 Initialized empty Git repository in gitrepo/.git/ |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
35 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
36 $ echo alpha > alpha |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
37 $ git add alpha |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
38 $ commit -m 'add alpha' |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
39 $ echo beta > beta |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
40 $ git add beta |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
41 $ commit -m 'add beta' |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
42 $ mkdir foo |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
43 $ echo blah > foo/bar |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
44 $ git add foo |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
45 $ commit -m 'add foo' |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
46 $ git rm alpha |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
47 rm 'alpha' |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
48 $ commit -m 'remove alpha' |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
49 $ git rm foo/bar |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
50 rm 'foo/bar' |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
51 $ commit -m 'remove foo/bar' |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
52 $ echo % final manifest in git is just beta |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
53 % final manifest in git is just beta |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
54 $ git ls-files |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
55 beta |
18
feab56c76c92
Add a basic test for cloning.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
56 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
57 $ cd .. |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
58 $ mkdir gitrepo2 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
59 $ cd gitrepo2 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
60 $ git init --bare | python -c "import sys; print sys.stdin.read().replace('$(dirname $(pwd))/', '')" |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
61 Initialized empty Git repository in gitrepo2/ |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
62 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
63 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
64 dulwich does not presently support local git repos, workaround |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
65 $ cd .. |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
66 $ git daemon --base-path="$(pwd)"\ |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
67 > --listen=localhost\ |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
68 > --export-all\ |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
69 > --pid-file="$DAEMON_PIDS" \ |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
70 > --detach --reuseaddr \ |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
71 > --enable=receive-pack |
18
feab56c76c92
Add a basic test for cloning.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
72 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
73 $ hg clone git://localhost/gitrepo hgrepo | grep -v '^updating' |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
74 importing git objects into hg |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
75 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
76 $ cd hgrepo |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
77 $ hg log --graph | grep -v ': *master' |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
78 @ changeset: 4:ea41a3f0ed10 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
79 | tag: default/master |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
80 | tag: tip |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
81 | user: test <test@example.org> |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
82 | date: Mon Jan 01 00:00:14 2007 +0000 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
83 | summary: remove foo/bar |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
84 | |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
85 o changeset: 3:c84537f94bcc |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
86 | user: test <test@example.org> |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
87 | date: Mon Jan 01 00:00:13 2007 +0000 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
88 | summary: remove alpha |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
89 | |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
90 o changeset: 2:e25450e1354f |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
91 | user: test <test@example.org> |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
92 | date: Mon Jan 01 00:00:12 2007 +0000 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
93 | summary: add foo |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
94 | |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
95 o changeset: 1:7bcd915dc873 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
96 | user: test <test@example.org> |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
97 | date: Mon Jan 01 00:00:11 2007 +0000 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
98 | summary: add beta |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
99 | |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
100 o changeset: 0:3442585be8a6 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
101 user: test <test@example.org> |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
102 date: Mon Jan 01 00:00:10 2007 +0000 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
103 summary: add alpha |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
104 |
18
feab56c76c92
Add a basic test for cloning.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
105 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
106 $ echo |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
107 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
108 $ echo % make sure alpha is not in this manifest |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
109 % make sure alpha is not in this manifest |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
110 $ hg manifest -r 3 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
111 beta |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
112 foo/bar |
202
1593538448b1
update tests to also push to git (not only clone)
Abderrahim Kitouni <a.kitouni@gmail.com>
parents:
185
diff
changeset
|
113 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
114 $ echo |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
115 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
116 $ echo % make sure that only beta is in the manifest |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
117 % make sure that only beta is in the manifest |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
118 $ hg manifest |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
119 beta |
18
feab56c76c92
Add a basic test for cloning.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
120 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
121 $ hg gclear |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
122 clearing out the git cache data |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
123 $ hg push git://localhost/gitrepo2 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
124 pushing to git://localhost/gitrepo2 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
125 exporting hg objects to git |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
126 creating and sending data |
18
feab56c76c92
Add a basic test for cloning.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
127 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
128 $ cd ../gitrepo2 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
129 $ git log --pretty=medium |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
130 commit b991de8952c482a7cd51162674ffff8474862218 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
131 Author: test <test@example.org> |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
132 Date: Mon Jan 1 00:00:14 2007 +0000 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
133 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
134 remove foo/bar |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
135 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
136 commit b0edaf0adac19392cf2867498b983bc5192b41dd |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
137 Author: test <test@example.org> |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
138 Date: Mon Jan 1 00:00:13 2007 +0000 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
139 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
140 remove alpha |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
141 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
142 commit f2d0d5bfa905e12dee728b509b96cf265bb6ee43 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
143 Author: test <test@example.org> |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
144 Date: Mon Jan 1 00:00:12 2007 +0000 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
145 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
146 add foo |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
147 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
148 commit 9497a4ee62e16ee641860d7677cdb2589ea15554 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
149 Author: test <test@example.org> |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
150 Date: Mon Jan 1 00:00:11 2007 +0000 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
151 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
152 add beta |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
153 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
154 commit 7eeab2ea75ec1ac0ff3d500b5b6f8a3447dd7c03 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
155 Author: test <test@example.org> |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
156 Date: Mon Jan 1 00:00:10 2007 +0000 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
157 |
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
158 add alpha |
20
9a93e8b0ec64
Add failing test for file removals.
Augie Fackler <durin42@gmail.com>
parents:
18
diff
changeset
|
159 |
499
4b64fc97ec7b
tests: unify test-file-removal
David M. Carr <david@carrclan.us>
parents:
390
diff
changeset
|
160 $ cd .. |