D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
zsh
/
5.0.2
/
functions
/
Filename :
VCS_INFO_get_data_cvs
back
Copy
## vim:ft=zsh ## cvs support by: Frank Terbeck <ft@bewatermyfriend.org> ## Distributed under the same BSD-ish license as zsh itself. setopt localoptions NO_shwordsplit local cvsbranch cvsbase cvsbase="." while [[ -d "${cvsbase}/../CVS" ]]; do cvsbase="${cvsbase}/.." done cvsbase="$(VCS_INFO_realpath ${cvsbase})" cvsbranch=$(< ./CVS/Repository) rrn=${cvsbase:t} cvsbranch=${cvsbranch##${rrn}/} [[ -z ${cvsbranch} ]] && cvsbranch=${rrn} VCS_INFO_formats '' "${cvsbranch}" "${cvsbase}" '' '' '' '' return 0