English 中文(简体)
如何利用CVS Anders项目来维持这一版本的历史?
原标题:How to use CVS inside Android project to maintain the version history?

我为SVN、GIT和CVS做了很多谷歌。 我的理解是,这只是用于维持我们开发的软件项目。 它们用于维持目前和历史版本。

我已在我的系统上安装了CVS储存库,帮助

现在,我可以看到Eclipse内的任务和CVS存放处,但我不知道如何利用我的项目。 如何保持版本?

没有任何联系说明如何维持任何项目或任何小实例。 没有人会帮助?

问题回答

Seems you want to understand the basics of version control system. I d recommed you read Joel Spolsky s HgInit which teaches the basics of version control.

任何版本控制系统合作的一般步骤:

  • Create a repository which holds the source code.
  • Set ignore files which will ignore changes done to particular files, such as binaru files(images etc)
  • Create a branch
  • Start working on a file. When you ve reached a logical end point(say, added a method, created a new class) commit the changes.
  • Repeat
  • Maintain separate branches for new features & for bug defects
  • Regularly merge them so that your bug defects are included in the new features branch
  • Create a release branch when your project is ready to be released.
  • So on.

I m sure others will point you to use a more Modern VCS like Mercurial/Git, if you re still interested in CVS look at these 2:





相关问题
Tracking Versions, Builds, Revisions, with TortiseSVN

I am the sole developer on a project and have been using tortoiseSVN for quite a while. Now Id like to start getting version information working correctly in the project I.E. show Major Version, Minor ...

Tips on upgrading CVS to git/hg?

We still use CVS, I use git and hg for my personal use though I m still a novice at both, but I realize they re much more modern and better, faster, distributed, etc. It s just everyone is so ...

How to handle different csproj [closed]

I am working in a team of five. We are working on a C# application with five csprojects. The problem is that for each csproject, each of my colleagues has their own ideas on how to reference a DLL; ...

Changing username in SVN+SSH URI on the fly in working copy

I am using SVN+SSH to check out a working copy of repository from an SVN server on which all developers are members of a developer group and have full read/write permissions on the repository ...

How to search for file in subversion server?

Is there a way to search for a file in a subversion repository? Something similar to Unix find command, with which I can find the location of a file in a repository. I know there is svn list, but ...

热门标签