1SVN-fs-dump-format-version: 2
   2UUID: b48289b2-9c08-4d72-af37-0358a40b9c15
   4Revision-number: 0
   6Prop-content-length: 56
   7Content-length: 56
   8K 8
  10svn:date
  11V 27
  122009-10-19T23:44:03.722969Z
  13PROPS-END
  14Revision-number: 1
  16Prop-content-length: 123
  17Content-length: 123
  18K 7
  20svn:log
  21V 24
  22Setup trunk and branches
  23K 10
  24svn:author
  25V 4
  26samv
  27K 8
  28svn:date
  29V 27
  302009-10-19T23:44:04.927533Z
  31PROPS-END
  32Node-path: branches
  34Node-kind: dir
  35Node-action: add
  36Prop-content-length: 10
  37Content-length: 10
  38PROPS-END
  40Node-path: trunk
  43Node-kind: dir
  44Node-action: add
  45Prop-content-length: 10
  46Content-length: 10
  47PROPS-END
  49Revision-number: 2
  52Prop-content-length: 106
  53Content-length: 106
  54K 7
  56svn:log
  57V 8
  58ancestor
  59K 10
  60svn:author
  61V 4
  62samv
  63K 8
  64svn:date
  65V 27
  662009-10-19T23:44:05.835585Z
  67PROPS-END
  68Node-path: trunk/Makefile
  70Node-kind: file
  71Node-action: add
  72Prop-content-length: 10
  73Text-content-length: 2401
  74Text-content-md5: bfd8ff778d1492dc6758567373176a89
  75Content-length: 2411
  76PROPS-END
  78# -DCOLLISION_CHECK if you believe that SHA1's
  79# 1461501637330902918203684832716283019655932542976 hashes do not give you
  80# enough guarantees about no collisions between objects ever hapenning.
  81#
  82# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
  83# Note that you need some new glibc (at least >2.2.4) for this, and it will
  84# BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
  85# break unless your underlying filesystem supports those sub-second times
  86# (my ext3 doesn't).
  87CFLAGS=-g -O3 -Wall
  88CC=gcc
  90PROG=   update-cache show-diff init-db write-tree read-tree commit-tree \
  93        cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \
  94        check-files ls-tree merge-base
  95all: $(PROG)
  97install: $(PROG)
  99        install $(PROG) $(HOME)/bin/
 100LIBS= -lssl -lz
 102init-db: init-db.o
 104update-cache: update-cache.o read-cache.o
 106        $(CC) $(CFLAGS) -o update-cache update-cache.o read-cache.o $(LIBS)
 107show-diff: show-diff.o read-cache.o
 109        $(CC) $(CFLAGS) -o show-diff show-diff.o read-cache.o $(LIBS)
 110write-tree: write-tree.o read-cache.o
 112        $(CC) $(CFLAGS) -o write-tree write-tree.o read-cache.o $(LIBS)
 113read-tree: read-tree.o read-cache.o
 115        $(CC) $(CFLAGS) -o read-tree read-tree.o read-cache.o $(LIBS)
 116commit-tree: commit-tree.o read-cache.o
 118        $(CC) $(CFLAGS) -o commit-tree commit-tree.o read-cache.o $(LIBS)
 119cat-file: cat-file.o read-cache.o
 121        $(CC) $(CFLAGS) -o cat-file cat-file.o read-cache.o $(LIBS)
 122fsck-cache: fsck-cache.o read-cache.o
 124        $(CC) $(CFLAGS) -o fsck-cache fsck-cache.o read-cache.o $(LIBS)
 125checkout-cache: checkout-cache.o read-cache.o
 127        $(CC) $(CFLAGS) -o checkout-cache checkout-cache.o read-cache.o $(LIBS)
 128diff-tree: diff-tree.o read-cache.o
 130        $(CC) $(CFLAGS) -o diff-tree diff-tree.o read-cache.o $(LIBS)
 131rev-tree: rev-tree.o read-cache.o
 133        $(CC) $(CFLAGS) -o rev-tree rev-tree.o read-cache.o $(LIBS)
 134show-files: show-files.o read-cache.o
 136        $(CC) $(CFLAGS) -o show-files show-files.o read-cache.o $(LIBS)
 137check-files: check-files.o read-cache.o
 139        $(CC) $(CFLAGS) -o check-files check-files.o read-cache.o $(LIBS)
 140ls-tree: ls-tree.o read-cache.o
 142        $(CC) $(CFLAGS) -o ls-tree ls-tree.o read-cache.o $(LIBS)
 143merge-base: merge-base.o read-cache.o
 145        $(CC) $(CFLAGS) -o merge-base merge-base.o read-cache.o $(LIBS)
 146read-cache.o: cache.h
 148show-diff.o: cache.h
 149clean:
 151        rm -f *.o $(PROG)
 152backup: clean
 154        cd .. ; tar czvf dircache.tar.gz dir-cache
 155Revision-number: 3
 158Prop-content-length: 115
 159Content-length: 115
 160K 7
 162svn:log
 163V 16
 164make left branch
 165K 10
 166svn:author
 167V 4
 168samv
 169K 8
 170svn:date
 171V 27
 1722009-10-19T23:44:06.719737Z
 173PROPS-END
 174Node-path: branches/left
 176Node-kind: dir
 177Node-action: add
 178Node-copyfrom-rev: 2
 179Node-copyfrom-path: trunk
 180Revision-number: 4
 183Prop-content-length: 112
 184Content-length: 112
 185K 7
 187svn:log
 188V 13
 189left update 1
 190K 10
 191svn:author
 192V 4
 193samv
 194K 8
 195svn:date
 196V 27
 1972009-10-19T23:44:07.167666Z
 198PROPS-END
 199Node-path: branches/left/Makefile
 201Node-kind: file
 202Node-action: change
 203Text-content-length: 2465
 204Text-content-md5: 16e38d9753b061731650561ce01b1195
 205Content-length: 2465
 206# -DCOLLISION_CHECK if you believe that SHA1's
 208# 1461501637330902918203684832716283019655932542976 hashes do not give you
 209# enough guarantees about no collisions between objects ever hapenning.
 210#
 211# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
 212# Note that you need some new glibc (at least >2.2.4) for this, and it will
 213# BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
 214# break unless your underlying filesystem supports those sub-second times
 215# (my ext3 doesn't).
 216CFLAGS=-g -O3 -Wall
 217CC=gcc
 219PROG=   update-cache show-diff init-db write-tree read-tree commit-tree \
 222        cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \
 223        check-files ls-tree merge-base
 224all: $(PROG)
 226install: $(PROG)
 228        install $(PROG) $(HOME)/bin/
 229LIBS= -lssl -lz
 231init-db: init-db.o
 233update-cache: update-cache.o read-cache.o
 235        $(CC) $(CFLAGS) -o update-cache update-cache.o read-cache.o $(LIBS)
 236show-diff: show-diff.o read-cache.o
 238        $(CC) $(CFLAGS) -o show-diff show-diff.o read-cache.o $(LIBS)
 239write-tree: write-tree.o read-cache.o
 241        $(CC) $(CFLAGS) -o write-tree write-tree.o read-cache.o $(LIBS)
 242read-tree: read-tree.o read-cache.o
 244        $(CC) $(CFLAGS) -o read-tree read-tree.o read-cache.o $(LIBS)
 245commit-tree: commit-tree.o read-cache.o
 247        $(CC) $(CFLAGS) -o commit-tree commit-tree.o read-cache.o $(LIBS)
 248cat-file: cat-file.o read-cache.o
 250        $(CC) $(CFLAGS) -o cat-file cat-file.o read-cache.o $(LIBS)
 251fsck-cache: fsck-cache.o read-cache.o
 253        $(CC) $(CFLAGS) -o fsck-cache fsck-cache.o read-cache.o $(LIBS)
 254checkout-cache: checkout-cache.o read-cache.o
 256        $(CC) $(CFLAGS) -o checkout-cache checkout-cache.o read-cache.o $(LIBS)
 257diff-tree: diff-tree.o read-cache.o
 259        $(CC) $(CFLAGS) -o diff-tree diff-tree.o read-cache.o $(LIBS)
 260rev-tree: rev-tree.o read-cache.o object.o commit.o tree.o blob.o
 262        $(CC) $(CFLAGS) -o rev-tree rev-tree.o read-cache.o object.o commit.o tree.o blob.o $(LIBS)
 263show-files: show-files.o read-cache.o
 265        $(CC) $(CFLAGS) -o show-files show-files.o read-cache.o $(LIBS)
 266check-files: check-files.o read-cache.o
 268        $(CC) $(CFLAGS) -o check-files check-files.o read-cache.o $(LIBS)
 269ls-tree: ls-tree.o read-cache.o
 271        $(CC) $(CFLAGS) -o ls-tree ls-tree.o read-cache.o $(LIBS)
 272merge-base: merge-base.o read-cache.o
 274        $(CC) $(CFLAGS) -o merge-base merge-base.o read-cache.o $(LIBS)
 275read-cache.o: cache.h
 277show-diff.o: cache.h
 278clean:
 280        rm -f *.o $(PROG)
 281backup: clean
 283        cd .. ; tar czvf dircache.tar.gz dir-cache
 284Revision-number: 5
 287Prop-content-length: 111
 288Content-length: 111
 289K 7
 291svn:log
 292V 12
 293trunk update
 294K 10
 295svn:author
 296V 4
 297samv
 298K 8
 299svn:date
 300V 27
 3012009-10-19T23:44:07.619633Z
 302PROPS-END
 303Node-path: trunk/Makefile
 305Node-kind: file
 306Node-action: change
 307Text-content-length: 2521
 308Text-content-md5: 0668418a621333f4aa8b6632cd63e2a0
 309Content-length: 2521
 310# -DCOLLISION_CHECK if you believe that SHA1's
 312# 1461501637330902918203684832716283019655932542976 hashes do not give you
 313# enough guarantees about no collisions between objects ever hapenning.
 314#
 315# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
 316# Note that you need some new glibc (at least >2.2.4) for this, and it will
 317# BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
 318# break unless your underlying filesystem supports those sub-second times
 319# (my ext3 doesn't).
 320CFLAGS=-g -O3 -Wall
 321CC=gcc
 323PROG=   update-cache show-diff init-db write-tree read-tree commit-tree \
 326        cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \
 327        check-files ls-tree merge-base merge-cache
 328all: $(PROG)
 330install: $(PROG)
 332        install $(PROG) $(HOME)/bin/
 333LIBS= -lssl -lz
 335init-db: init-db.o
 337update-cache: update-cache.o read-cache.o
 339        $(CC) $(CFLAGS) -o update-cache update-cache.o read-cache.o $(LIBS)
 340show-diff: show-diff.o read-cache.o
 342        $(CC) $(CFLAGS) -o show-diff show-diff.o read-cache.o $(LIBS)
 343write-tree: write-tree.o read-cache.o
 345        $(CC) $(CFLAGS) -o write-tree write-tree.o read-cache.o $(LIBS)
 346read-tree: read-tree.o read-cache.o
 348        $(CC) $(CFLAGS) -o read-tree read-tree.o read-cache.o $(LIBS)
 349commit-tree: commit-tree.o read-cache.o
 351        $(CC) $(CFLAGS) -o commit-tree commit-tree.o read-cache.o $(LIBS)
 352cat-file: cat-file.o read-cache.o
 354        $(CC) $(CFLAGS) -o cat-file cat-file.o read-cache.o $(LIBS)
 355fsck-cache: fsck-cache.o read-cache.o
 357        $(CC) $(CFLAGS) -o fsck-cache fsck-cache.o read-cache.o $(LIBS)
 358checkout-cache: checkout-cache.o read-cache.o
 360        $(CC) $(CFLAGS) -o checkout-cache checkout-cache.o read-cache.o $(LIBS)
 361diff-tree: diff-tree.o read-cache.o
 363        $(CC) $(CFLAGS) -o diff-tree diff-tree.o read-cache.o $(LIBS)
 364rev-tree: rev-tree.o read-cache.o
 366        $(CC) $(CFLAGS) -o rev-tree rev-tree.o read-cache.o $(LIBS)
 367show-files: show-files.o read-cache.o
 369        $(CC) $(CFLAGS) -o show-files show-files.o read-cache.o $(LIBS)
 370check-files: check-files.o read-cache.o
 372        $(CC) $(CFLAGS) -o check-files check-files.o read-cache.o $(LIBS)
 373ls-tree: ls-tree.o read-cache.o
 375        $(CC) $(CFLAGS) -o ls-tree ls-tree.o read-cache.o $(LIBS)
 376merge-base: merge-base.o read-cache.o
 378        $(CC) $(CFLAGS) -o merge-base merge-base.o read-cache.o $(LIBS)
 379merge-cache: merge-cache.o read-cache.o
 381        $(CC) $(CFLAGS) -o merge-cache merge-cache.o read-cache.o $(LIBS)
 382read-cache.o: cache.h
 384show-diff.o: cache.h
 385clean:
 387        rm -f *.o $(PROG)
 388backup: clean
 390        cd .. ; tar czvf dircache.tar.gz dir-cache
 391Revision-number: 6
 394Prop-content-length: 112
 395Content-length: 112
 396K 7
 398svn:log
 399V 13
 400left update 2
 401K 10
 402svn:author
 403V 4
 404samv
 405K 8
 406svn:date
 407V 27
 4082009-10-19T23:44:08.067554Z
 409PROPS-END
 410Node-path: branches/left/Makefile
 412Node-kind: file
 413Node-action: change
 414Text-content-length: 2593
 415Text-content-md5: 5ccff689fb290e00b85fe18ee50c54ba
 416Content-length: 2593
 417# -DCOLLISION_CHECK if you believe that SHA1's
 419# 1461501637330902918203684832716283019655932542976 hashes do not give you
 420# enough guarantees about no collisions between objects ever hapenning.
 421#
 422# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
 423# Note that you need some new glibc (at least >2.2.4) for this, and it will
 424# BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
 425# break unless your underlying filesystem supports those sub-second times
 426# (my ext3 doesn't).
 427CFLAGS=-g -O3 -Wall
 428CC=gcc
 430PROG=   update-cache show-diff init-db write-tree read-tree commit-tree \
 433        cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \
 434        check-files ls-tree merge-base
 435all: $(PROG)
 437install: $(PROG)
 439        install $(PROG) $(HOME)/bin/
 440LIBS= -lssl -lz
 442init-db: init-db.o
 444update-cache: update-cache.o read-cache.o
 446        $(CC) $(CFLAGS) -o update-cache update-cache.o read-cache.o $(LIBS)
 447show-diff: show-diff.o read-cache.o
 449        $(CC) $(CFLAGS) -o show-diff show-diff.o read-cache.o $(LIBS)
 450write-tree: write-tree.o read-cache.o
 452        $(CC) $(CFLAGS) -o write-tree write-tree.o read-cache.o $(LIBS)
 453read-tree: read-tree.o read-cache.o
 455        $(CC) $(CFLAGS) -o read-tree read-tree.o read-cache.o $(LIBS)
 456commit-tree: commit-tree.o read-cache.o
 458        $(CC) $(CFLAGS) -o commit-tree commit-tree.o read-cache.o $(LIBS)
 459cat-file: cat-file.o read-cache.o
 461        $(CC) $(CFLAGS) -o cat-file cat-file.o read-cache.o $(LIBS)
 462fsck-cache: fsck-cache.o read-cache.o object.o commit.o tree.o blob.o
 464        $(CC) $(CFLAGS) -o fsck-cache fsck-cache.o read-cache.o object.o commit.o tree.o blob.o $(LIBS)
 465checkout-cache: checkout-cache.o read-cache.o
 467        $(CC) $(CFLAGS) -o checkout-cache checkout-cache.o read-cache.o $(LIBS)
 468diff-tree: diff-tree.o read-cache.o
 470        $(CC) $(CFLAGS) -o diff-tree diff-tree.o read-cache.o $(LIBS)
 471rev-tree: rev-tree.o read-cache.o object.o commit.o tree.o blob.o
 473        $(CC) $(CFLAGS) -o rev-tree rev-tree.o read-cache.o object.o commit.o tree.o blob.o $(LIBS)
 474show-files: show-files.o read-cache.o
 476        $(CC) $(CFLAGS) -o show-files show-files.o read-cache.o $(LIBS)
 477check-files: check-files.o read-cache.o
 479        $(CC) $(CFLAGS) -o check-files check-files.o read-cache.o $(LIBS)
 480ls-tree: ls-tree.o read-cache.o
 482        $(CC) $(CFLAGS) -o ls-tree ls-tree.o read-cache.o $(LIBS)
 483merge-base: merge-base.o read-cache.o object.o commit.o tree.o blob.o
 485        $(CC) $(CFLAGS) -o merge-base merge-base.o read-cache.o object.o commit.o tree.o blob.o $(LIBS)
 486read-cache.o: cache.h
 488show-diff.o: cache.h
 489clean:
 491        rm -f *.o $(PROG)
 492backup: clean
 494        cd .. ; tar czvf dircache.tar.gz dir-cache
 495Revision-number: 7
 498Prop-content-length: 131
 499Content-length: 131
 500K 7
 502svn:log
 503V 32
 504merge branch 'left' into 'trunk'
 505K 10
 506svn:author
 507V 4
 508samv
 509K 8
 510svn:date
 511V 27
 5122009-10-19T23:44:08.971801Z
 513PROPS-END
 514Node-path: trunk
 516Node-kind: dir
 517Node-action: change
 518Prop-content-length: 83
 519Content-length: 83
 520K 9
 522svk:merge
 523V 53
 524b48289b2-9c08-4d72-af37-0358a40b9c15:/branches/left:6
 525PROPS-END
 526Node-path: trunk/Makefile
 529Node-kind: file
 530Node-action: change
 531Text-content-length: 2713
 532Text-content-md5: 0afbe34f244cd662b1f97d708c687f90
 533Content-length: 2713
 534# -DCOLLISION_CHECK if you believe that SHA1's
 536# 1461501637330902918203684832716283019655932542976 hashes do not give you
 537# enough guarantees about no collisions between objects ever hapenning.
 538#
 539# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
 540# Note that you need some new glibc (at least >2.2.4) for this, and it will
 541# BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
 542# break unless your underlying filesystem supports those sub-second times
 543# (my ext3 doesn't).
 544CFLAGS=-g -O3 -Wall
 545CC=gcc
 547PROG=   update-cache show-diff init-db write-tree read-tree commit-tree \
 550        cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \
 551        check-files ls-tree merge-base merge-cache
 552all: $(PROG)
 554install: $(PROG)
 556        install $(PROG) $(HOME)/bin/
 557LIBS= -lssl -lz
 559init-db: init-db.o
 561update-cache: update-cache.o read-cache.o
 563        $(CC) $(CFLAGS) -o update-cache update-cache.o read-cache.o $(LIBS)
 564show-diff: show-diff.o read-cache.o
 566        $(CC) $(CFLAGS) -o show-diff show-diff.o read-cache.o $(LIBS)
 567write-tree: write-tree.o read-cache.o
 569        $(CC) $(CFLAGS) -o write-tree write-tree.o read-cache.o $(LIBS)
 570read-tree: read-tree.o read-cache.o
 572        $(CC) $(CFLAGS) -o read-tree read-tree.o read-cache.o $(LIBS)
 573commit-tree: commit-tree.o read-cache.o
 575        $(CC) $(CFLAGS) -o commit-tree commit-tree.o read-cache.o $(LIBS)
 576cat-file: cat-file.o read-cache.o
 578        $(CC) $(CFLAGS) -o cat-file cat-file.o read-cache.o $(LIBS)
 579fsck-cache: fsck-cache.o read-cache.o object.o commit.o tree.o blob.o
 581        $(CC) $(CFLAGS) -o fsck-cache fsck-cache.o read-cache.o object.o commit.o tree.o blob.o $(LIBS)
 582checkout-cache: checkout-cache.o read-cache.o
 584        $(CC) $(CFLAGS) -o checkout-cache checkout-cache.o read-cache.o $(LIBS)
 585diff-tree: diff-tree.o read-cache.o
 587        $(CC) $(CFLAGS) -o diff-tree diff-tree.o read-cache.o $(LIBS)
 588rev-tree: rev-tree.o read-cache.o object.o commit.o tree.o blob.o
 590        $(CC) $(CFLAGS) -o rev-tree rev-tree.o read-cache.o object.o commit.o tree.o blob.o $(LIBS)
 591show-files: show-files.o read-cache.o
 593        $(CC) $(CFLAGS) -o show-files show-files.o read-cache.o $(LIBS)
 594check-files: check-files.o read-cache.o
 596        $(CC) $(CFLAGS) -o check-files check-files.o read-cache.o $(LIBS)
 597ls-tree: ls-tree.o read-cache.o
 599        $(CC) $(CFLAGS) -o ls-tree ls-tree.o read-cache.o $(LIBS)
 600merge-base: merge-base.o read-cache.o object.o commit.o tree.o blob.o
 602        $(CC) $(CFLAGS) -o merge-base merge-base.o read-cache.o object.o commit.o tree.o blob.o $(LIBS)
 603merge-cache: merge-cache.o read-cache.o
 605        $(CC) $(CFLAGS) -o merge-cache merge-cache.o read-cache.o $(LIBS)
 606read-cache.o: cache.h
 608show-diff.o: cache.h
 609clean:
 611        rm -f *.o $(PROG)
 612backup: clean
 614        cd .. ; tar czvf dircache.tar.gz dir-cache
 615