~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-security

« back to all changes in this revision

Viewing changes to t/t4014-format-patch.sh

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-10-04 08:27:01 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20071004082701-rsd058ontoqz4i30
Tags: 1:1.5.3.4-1
new upstream point release (closes: #445188).

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
test_expect_success setup '
11
11
 
12
12
        for i in 1 2 3 4 5 6 7 8 9 10; do echo "$i"; done >file &&
13
 
        git add file &&
 
13
        cat file >elif &&
 
14
        git add file elif &&
14
15
        git commit -m Initial &&
15
16
        git checkout -b side &&
16
17
 
17
18
        for i in 1 2 5 6 A B C 7 8 9 10; do echo "$i"; done >file &&
18
 
        git update-index file &&
 
19
        chmod +x elif &&
 
20
        git update-index file elif &&
 
21
        git update-index --chmod=+x elif &&
19
22
        git commit -m "Side changes #1" &&
20
23
 
21
24
        for i in D E F; do echo "$i"; done >>file &&