Search Results

2
votes

Bazaar and $Id$

Having automatically generated Id tags that show a sensible version number is impossible to do with DSCM tools like Bazaar because everybody’s line of development can be different from all others. …
1
vote

Best reflection of extract-interface refactoring in subversion

Rename AppProperties.java to AppPropertiesImpl.java (using svn rename) and commit. Afterwards change your files and add the new AppProperties.java …
0
votes

Conveniently move a class to a different package in eclipse without borking svn

You can not do both at the same time because moving the files alone is not enough. The files need to be modified in order for your code to be compilable again. So refactor with Eclipse and let Subc …
3
votes

Copy SVN Repository

If the export was created using svnadmin dump you can import it into a new, empty repository using # cd /path/to/new/repo # svnadmin load . < /path/to/dumpfile …
19
votes

Personal Version Controller

Git creates repositories that do not require a central server. Also, you can of course restore any previous version for tracked files which is—of cour …
0
votes

Is using a central repository going against GIT’s purpose?

DVCS like Git don’t force you to use a central repository. Of course it’s possible to declare one repository to be “central” or “official” or whatever, and in a company context a central repository …
1
vote

How to partially export a git repository?

You could use git-filter-branch to extract the parts you want to import to Google Code. …
-2
votes

How do I prevent a subversion user accessing part of the repository?

The Subversion Book has your answer right …
4
votes

What’s the git equivalent of “svn update -r”?

git checkout HEAD~1 This will move your current HEAD to one revision earlier. git checkout <sha> This will move your current HEAD t …
3
votes

Pushing an existing git repository to SVN

Create a new directory in the subversion repository for your project. # svn mkdir --parents svn://ip/path/project/trunk Change to your Git-managed project and init …
1
vote

Unable to use git-svn in Mac

Don’t forget to git init your directory before calling git svn init. …
0
votes

Fork and sync google code svn into github

I’m not quite sure what it is that you want but, of course can you pull from a subversion repository and push to a Git repository from the same working copy. And you can also git svn dcommit …
1
vote

Will Subversion efficiently store OpenXML Office documents?

Have you ever tried to open an OpenXML file in a text editor? To make it short: it is not text, it is still binary. So no, you can’t make Subversion handle it any different. …
0
votes

Am I doing it wrong? Merging SVN changes from trunk into a git branch. Using merge --squash

The company where I work also uses Subversion for source control. I’m using a different approach: I’m committing very often to my local Git repository but don’t want to swamp the Subversion server …
1
vote

Replace Subversion Folder and Retain History

When removing the 3.4 folder and copying the 3.3 folder over it nothing is lost. That’s what subversion is there for. You can access the “old” version 3.4 by using a “peg revision”, i.e. use …