Mercurial > dotfiles
comparison .shell.d/50.vcs_functions.sh @ 81:5b1c3bfcf4b8
Remove special case for hgsubversion that is no longer needed.
| author | Augie Fackler <durin42@gmail.com> |
|---|---|
| date | Mon, 13 Apr 2009 10:59:31 -0500 |
| parents | 5232fa3d7ad3 |
| children | 568f9f350844 |
comparison
equal
deleted
inserted
replaced
| 80:423b8666e6f6 | 81:5b1c3bfcf4b8 |
|---|---|
| 119 for aa in */ ; do | 119 for aa in */ ; do |
| 120 pushd $aa > /dev/null || continue | 120 pushd $aa > /dev/null || continue |
| 121 if [ -e .svn ] ; then | 121 if [ -e .svn ] ; then |
| 122 echo $aa 'is an svn checkout, updating' | 122 echo $aa 'is an svn checkout, updating' |
| 123 svn up | 123 svn up |
| 124 elif [ -e .hg/svn ] ; then | |
| 125 echo $aa 'is an hg-svn checkout, updating' | |
| 126 hg svn pull | |
| 127 hg up | |
| 128 elif [ -e .git/svn ] ; then | 124 elif [ -e .git/svn ] ; then |
| 129 echo $aa 'is a git-svn checkout, updating' | 125 echo $aa 'is a git-svn checkout, updating' |
| 130 git svn fetch | 126 git svn fetch |
| 131 git repack | 127 git repack |
| 132 git gc | 128 git gc |
