Hello, we are creating hospital information system software. The project will be different hospital to hospital and contain different use cases. But lots of parts will be the same. So we will use branching mechanism of the source control. If we find a bug in one hospital, how can we know the other branches have the same bug or not.
Th...
Hello,
as a personal project I am trying to write a wiki with the help of django. I'm a beginner when it comes to web development. I am at the (early) point where I need to decide how to store the wiki sites. I have three approaches in mind and would like to know your suggestion.
Flat files
I considered a flat file approach with a ver...
I would like to mark an arbitrary group of commits/changesets with a label.
Commit 1 *Mark 1
Commit 2 *Mark 2
Commit 3
Commit 4 *Mark 1
Commit 5 *Mark 2
The goal is to easily locate all the changes for a specific mark, and to have that grouping persisted in the VCS directly, as opposed to some outside system like a bug tracking sy...
$ git branch -a
* SocialAct
master
remotes/origin/HEAD -> origin/master
remotes/origin/SocialAct
remotes/origin/social
I want to delete the remote branch "remotes/origin/social", and applied folloing command:
$ git branch -d -r origin/social
Deleted remote branch origin/social (was 26f6f61).
But I have no idea how to bring t...
Hello,
I'm using bsd unix.
I've issued cvs -d [email protected]:/cvsroot co pkgsrc command.
It says:
ssh: Could not resolve hostname
anoncvs.netbsd.org: hostname nor
servname provided or not known
cvs [checkout aborted] : end of file
from server (consult above messages if
any)
I'm behind proxy server. I di...
My shop is trying to formalize the release management process for an OSS product we maintain (edit: using SVN for version control). It's a sort of a web development framework/CMS kind of thing, as in it's a product that other projects are built on top of. This makes clear communication about the versioning system especially critical for ...
I need to merge changes from a branch back into trunk but want to continue work on the existing branch.
I was going to use a re-integrate merge but realised this is not suitable as I will need to recreate my branch etc which for a variety of reasons is not desirable.
What I really want to do is merge the current revisions in the branch...
<tl;dr>
In source version control diff patch generation, would it be worth it to use the optimizations listed at the very bottom of this writing (see <optimizations>) in my Ruby implementation of diff for making diff patches?
</tl;dr>
<introduction>
I am programming something I have never done before and there might already be tools out...
ok say I am on revision 4.
I check it out, make some change and commit it. I am not on revision 5.
I check it out again, am making some changes, but I am informed that there was a typo from revision 5 that needs to be changed right away.
I don't want to fix it in my current working copy because I am in the middle of something and it w...
I'm seeking opinions here. The following may be considered either an SVN-specific question, or a more general version control question.
If the sources of a project are to be branched at a point corresponding to a release, perhaps for maintenance work, is it preferable to:
(a) branch from the tag, or
(b) branch from the node (e.g. on t...
When setting up a source control repository for a Flex Builder workspace, what do you consider to be worth checking in? Do you exclude the workspace .metadata folder but keep the .project and other project specific files? Keep both? Throw away both? Is there a guideline you use to decide which is worth holding onto or do you do it out of...
I am using Git Version Control on an remote server and I have set up a repository that multiple people will be using to push/fetch from. I have put the repo under
/srv/subdir/git/.git
I have been experiencing problem after problem it seems like.
a) Is this location suitable for handling a project that will need to be accessed/modified...
I am using Git Version Control witht he JGit Plugin for the eclipse IDE. when I changed the location of my repo, and when to push to the new repository. I am receiving the following error message.
Cant connect to any repository:
git+ssh/username@remoteIPAddressgoeshere/srv/wma/git
Transport error occured during push operation:
Java.IO...
My company provides a large .NET service-oriented solution. The services layer interact with a T-SQL back-end consisting of hundreds of tables and stored procedures. Our C# code is in version-control (SVN) but our stored procedures and schema are not.
After much lobbying of expedient upper-management, I was allowed to review our (non-ex...
If I have a directory of files (with subdirectories) that is not under source control (no .svn directories), is there any way to compare it with a revision in svn (i.e. "svn diff")?
Similar question: if I have a directory of files that is under source control, can I do a diff to a different URL than the one it was checked out from?
...
Hi Everyone,
For version control we currently use Visual Source Safe and are thinking of migrating to another version control system (SVN, Mercurial, Git).
Currently we use Visual Source Safe's "Shared" file feature quite heavily. This allows us to share code between design and runtimes of a single product, and between multiple product...
Possible Duplicate:
Do I really need version control?
I am a lone developer, developing Web Sites/Apps in PHP. I dont work with anybody, I use a framework so I dont create libraries for my apps (most of the time).
I have read a lot about Version Control and its benefits, but I dont understand how it would benefit somebody lik...
We are about to begin work on an application that will eventually be deployed many times on one server. I am hoping to build a nice interface so that one of my coworkers can easily create new deployments of this application. The idea is to create a wizard with a series of options that will configure basic properties of each particular ...
Hi all,
I want to pass a project to a colleague without SCC bindings to avoid accidental changes in my repository.
Is it possible to do a clean checkout from a TFS 2008 repo? I'm going crazy finding such an option in VS2008.
Thanks in advance.
...
Hi,
I am not too familiar with sql server 2005.
I have a schema in sql which has stored procedures with small lock on them. As I understand they were created using C#, all these locked procedures have a source file in C# with the code of the procedures. The thing is I can't access them. I need to modify one of these procedures but it ...