version-control

Any tutorial/manual for TFS team explorer

I used to used git for version control and like the branch/stash feature. Now I am developing on VS2005 and using TFS for version control. Can anyone give me some website for TFS team explorer tutorial/manual? As least I want to find out how to branch. thanks! ...

Git tool to remove lines from staging if they consist only of changes in whitespace

The point in removing trailing whitespace is that if everyone does it always then you end up with a diff that is minimal, ie. it consists only of code changes and not whitespace changes. However when working with other people who do not practice this, removing all trailing whitespace with your editor or a pre-commit hook results in an e...

What components in FAST ESP can be versioned for builds and deployment?

I needed to understand what are the FAST ESP components that can be versioned in source control? Are there any best practices to follow for the same so that can be used for regular builds and deployment? ...

Should commit messages be written in present or past tense?

So which is it that you think is better and more intuitive? Fixed the XXX bug in YYY Fix the XXX bug in YYY Fixes the XXX bug in YYY Fixing the XXX bug in YYY Please provide your rationales. Note I am asking from your general perspective, meaning you should not try to associate this with your preferred svn/cvs tools or programming la...

SSIS version controlling + subversion.

Hello all I got a situation where need to maintain version controlling on SSIS packages. Subversion is in place for other .net apps. Now want to move ssis packages to subversion. got ssis solutions as below: ProjectA solution dtsx1 dtsx2 dtsx3 ProjectB solution dtsx1 dtsx2 dtsx3 what are the best practices to do this. How c...

VSS: Move file from one folder to another?

Is there a way in Visual SourceSafe to move a file from one directory to another while retaining its history? Edit I actually found a round about way to do this. First I drag the file I want to move to the directory I want to move it to, this creates a "Link" to the file there and then I "permanently destroy" the file in its original ...

Effective Version Control for Slides

I have to maintain a huge set of training material in forms of slides. At a first glance, I've noticed there's no support for version control in OpenOffice OOImpress (but I might be wrong on this). Which tool should I use to easily maintain my training material? I thought about using LaTeX + Beamer so that I can easily put under versi...

Version control with file level control

I currently use SVN and have a framework that I use on all of my projects, let's say this framework has lib directory with needed files. That directory is in a 'framework' repository so I can update it on every project. My problem is that in that lib directory I want to add a project specific file that should be in project specific repos...

Which VCS should I use with Google Code?

I am about to start a project and was thinking of using Google Code to host it. It gives the option of using Mercurial or SVN for version control. I have never before used a VCS, and would like to know which one is easier to work with. The project involves two main programmers, but a few others may contribute small amounts. It is mostly...

Using Subversion, where is "actual" source code stored?

I'm just getting used to Subversion and I have a fundamental question about versioning. I've created my SVN repository on a server "S" hosted in my network. Assuming I "import" code, files, directories, etc. from another computer "A" in the network, it gets added to my server's SVN repository. I do a checkout from another computer "B"...

How to manage backups and monitor Git with a central repository?

I'm on a team using Git right now, and we have a pretty good workflow. We have a central repository with two branches, dev and master. We create local branches to work on individual tasks. We merge into dev when they are ready. Then we merge to master when things are ready, and we tag all of our releases. If multiple developers need to c...

Moving files between independent repositories in SVN

After some research I have found that it is possible to move files out of one repo and into another, separate repo and still maintain the associated history. The process includes dumping the entire repo to file, filtering that dump file for the paths/files you want (assuming you don't want to move everything), then loading said dump file...

Issue tracking software that support multiple repositories

We are just starting to be using subversion as our SCM software at my job, I would need some advise here. My project manager would like to use only one instance of a software to manage every projects we have (so we don't want to install a trac instance for each project we start it's kind of an overload).I heard trac can support multiple...

Web Part to Field control

Need to convert a web part to a field control on a Sharepoint page. Part of the problem is to migrate all the content on existing pages that use the web part to the corresponding field control. Any ideas on how to accomplish this as painlessly as possible? ...

Finding bugs in Subversion's mixed revision working copies

The project I work on has recently been switched from a horribly antiquated revision control system to Subversion. I felt like I had a fairly good understanding of Subversion a few years ago, but once I learned about Mercurial, I forgot about Subversion quickly. My question is targeted at those who work with a sizable number (15+) deve...

Choosing a source control system: logical next steps after VSS

I've been using Git for the past few months and love it. I looked into how to host it in a corporate environment. Considering a 10 person team who use Visual SourceSafe, programming in Coldfusion, Powerbuilder, PHP and a bit of .NET, I found, to my surprise, that the Git 'server' tooling is still fairly rudimentary. http://stackoverflo...

How can I change the files initially imported into an SVN repository?

I have created an SVN repository for project but now realise that the files initially imported are not the most recent. When I compare the 2 versions of the project with Beyond Compare, the projects do not have the exact same set of files within them. Both project folders have some files which are unique. I want to now add the correct ...

Has anyone here ever switched Version Control System from PVCS/Serena Dimensions to Subversion?

A Google search revealed the existence of some custom scripts, for example PVCS --> CVS and then cvs --> svn should be quite straightforward. But ... Has anyone really tried them? With which versions of the platforms? Other migration experiences might be useful to know about too. Thanks. ...

Programmatically make use of eclipse's merge and diff viewers.

When a text conflict occurs in Bazaar (and many other dvcs) a .BASE, .THIS and .OTHER file is produced. Its then up to the user to make use of an 3 way merge tool to merge the conflict and then mark it as resolved. I would like to get hold of all the registered merge viewers in eclipse and give the user an option to merge the conflict w...

Version control integration with eclipse

I'm looking for a version control system just for me on my windows computer to integrate into eclipse. I was thinking to use Mercurial instead of Subversion, but I'm having doubts about the mercurial eclipse plugin. Any input on this that you can help me with? Is it worth it to have a version control system when you're working alone, ho...