Fossil

Artifact [139aabf0]
Login

Artifact [139aabf0]

Artifact 139aabf0a3f5c4e980abc68fc47adbfe85b2b32d:

Attachment "tst.sh" to ticket [e8a10100] added by martin.weber 2011-08-22 15:26:39.
#! /bin/sh
rm -f banzai.fossil
fossil init banzai.fossil
rm -Rf open
mkdir -p open
cd open
fossil open ../banzai.fossil
touch some-file
fossil add some-file
fossil ci -m 'added some file' some-file
ls -l some-file
rm -f some-file
[ -f some-file ] || { echo "After rm: some-file is not there." ; }
fossil status
fossil update
[ -f some-file ] || { echo "After fossil update: some-file is not there." ; }
fossil status
fossil update -v
[ -f some-file ] || { echo "After fossil update -v: some-file is not there." ; }
fossil status
fossil close
cd ..