Proxy Information
Original URL
gemini://ibert.tech/articles/put-additional-files-under-cvs-control.gmi
Status Code
Success (20)
Meta
text/gemini; charset=utf-8; lang=en; size=640 # Put additional files under CVS control If you have potentially added new files and directories to a CVS work area and want to put them under version control, you need to add the directories first before you can add the files. This assumes that the new files do not have names with white space in them. ``` find . -type d \! -name CVS | while read i do if [ -d $i/CVS ] then : else cvs -q add $i fi done cvs -qn update | awk '$1 == "?" {print $2}' | xargs cvs -q add ``` ## Tags => ../tags/cvs.gmi cvs => ../tags/linux.gmi linux => ../tags/script.gmi script => .. Start page
Capsule Response Time
241.234352 milliseconds
Gemini-to-HTML Time
0.0123 milliseconds

This content has been proxied by September (3851b).