顯示具有 Source Control 標籤的文章。 顯示所有文章
顯示具有 Source Control 標籤的文章。 顯示所有文章

星期三, 5月 06, 2009

svn server in Linux

Create Repos:
svnadmin create ~/SVN/repos/project

then:
svn import xxx/yyy/ ~/SVN/repos/project

星期二, 12月 26, 2006

Which files to add to repository?

Which files to add to repository?

As programer, we need to know the purpose of every file in our project to have fully control.
This document is about the files of Visual C++ & embedded Visual C++ which need to be put into our version control.
the url link: http://www.jeffhung.net/blog/articles/jeffhung/348/.

星期五, 11月 10, 2006

Installing CVSNT & WinCVS

1. Installing the CVSNT under my Windows XP pro.
- get the cvsnt-2.5.03.2260.msi from my software repository. (You could download the latest version from www.cvsnt.org)
- running the setup program of cvsnt (nothing specical)
- there is no need to reboot system after completed the install process.
- setup the defaul repositoy (example: Location: D:/CVSRepository, Name: /CVSRepository, Description: CVSRoot, Publish repository checked, Default repository checked, Online checked.)
- done.

2. Installing the WinCVS
- get the WinCvs2_0_2-4.zip from www.wincvs.org.
- running the setup program of WinCVS (choosing Typical)
- Set the CVS server related setting by clicking Admin/Login. (example: :pserver:allen@jupiter:/CVSRepository, format is :protocal:user@server:/repository)
- done.


PS: always keep in mind if there is code changed, use "update" before directly commit.