All Questions
Tagged with svn or subversion
226 questions
0
votes
3
answers
191
views
Merging Python2.7 code to its ported Python3.9 version
I am working on a Django based project that is version controlled with SVN. My main objective is porting it from Python2.7 to Python3.9. Whilst I port the project, my team brought some updates, now I ...
9
votes
2
answers
840
views
Disadvantages for having completely different codebases in different git branches
One senior member of my team setup a new git repository for our product we are working on, since we are migrating from SVN to git. Our product consists of different software components that are ...
2
votes
2
answers
420
views
Who is the potential audience of a commit message?
I've been taking a course on plain language writing, in order to make my commit messages more readable and understandable.
One of the main ideas in plain language writing is that your first identify ...
1
vote
2
answers
465
views
Managing the same files in four separate SVN repositories
We have four repositories in SVN, in which most of the files are same in all four of them. The reason why we are using four different repositories is, we have four different software products which ...
3
votes
1
answer
257
views
Git structure for multi platform projects
Currently I use SVN for my project and the structure looks like this:
trunk/SharedLibrary/
trunk/platform/wordpress/ <- platform base directory
trunk/platform/wordpress/SharedLibrary <- ...
3
votes
1
answer
923
views
How to manage same source code for different country in SVN?
as per my current requirement. I would like to maintain common source code for different country releases.
Below are the cases which are required to be covered in the new process of code manage.
...
8
votes
3
answers
661
views
Is it a good idea to lock svn
I have to define the new way of working for a development team which goes from a one man unit, to a distributed team with programmers al over the world. The team will work with svn. This is a non-...
1
vote
2
answers
126
views
SVN / Git How to administer branches
I'm the technical lead for a small company (6 developers). We currently use SVN and we're slowly porting over to Git, after everyone gets their training.
Currently our clients are the ones who "pull ...
6
votes
2
answers
2k
views
Converting a very large remote subversion repository to a slimmed down Git repository
I have the pleasure of taking over 14 year old subversion repository that consists of two key elements:
111,000 revisions, about 10% of which are substantial;
The repository dump is about 73 GB, due ...
4
votes
3
answers
517
views
Same dev env setup across multiple machines - aka fixing "but it worked on my machine"
Community,
as our software and development team grows, we ran into multiple problems:
Multiple Config files with different paths for each machine
"Do I need this tool? And what version, I don't have ...
112
votes
14
answers
19k
views
How can I maintain code quality without SCM?
I am working in a governmental institution. The technology being used here and the methods for developing software are quite old fashioned.
They have tons of storage space but no appropriate space ...
0
votes
1
answer
2k
views
How to properly develop in different SVN branches with Eclipse IDE?
I recently got into a slight argument with the other developer on my team about the correct way to develop with SVN and Eclipse. My way of developing in multiple branches is by creating new workspaces ...
0
votes
1
answer
445
views
How to provide Java libraries internally?
In my small team we write applications that run as a Jenkins job and using the SOAP API of our Bug Tracker, our ALM software. They are accessed with Java however I think developers using other ...
5
votes
1
answer
3k
views
Branching a subdirectory while keeping commits from other directories
I currently have a single pre-existing Git repo for a client/server solution that contains three subdirectories for 3 sub-projects:
/client - An Angular2 SPA application (client-side TypeScript)
/...
1
vote
2
answers
121
views
Avoid wrong variable on branch commit
Our frontend web software contains, inside a file called url.js a variable used as URL root for REST webservices.
var url = "https://devappserver:8080";
During development on developer PC, for ...
0
votes
2
answers
285
views
Migration from SVN to Git. Multiple depedant projects for Continous Integration
I'm in charge of switching our 10+ years old code base from SVN to Git. Currently we have one single monolithic repository containing all of our projects. We have shared libraries and multiple ...
29
votes
8
answers
11k
views
Git - What issues arise from working directly on master?
I have seen lots of advice about git branching models and the most common opinion seems to be that making changes directly on the master branch is a bad idea.
One of our co-workers is quite happy ...
0
votes
1
answer
369
views
Automatic Resolution in SVN for CSV File
Situation
We are a large team of developers, using SVN for source control on our project. One of our files, FileTracker.cvs, is very large: it contains metadata about almost every file in our repo. ...
-3
votes
1
answer
204
views
Version control problem
I heavily use Excel and CSV at my workplace.
File 0 Excel File
The initial file is an Excel file. Let's call this File 0. This may or may not change with time depending upon the requirement of the ...
2
votes
3
answers
3k
views
Is there a way to comment a source file using a separate file?
I'm using a large and complex library including R and C++ code, available online via a subversion repository. Trying to figure out how it works I took a bunch of notes in the source code itself, in ...
-2
votes
1
answer
671
views
Repository UUID equivalent
I am converting an old Subversion repository to Git. Here is an example:
$ svn info http://alfa.com/bravo/charlie
Path: charlie
URL: http://alfa.com/bravo/charlie
Relative URL: ^/charlie
Repository ...
13
votes
4
answers
3k
views
Should we use a monorepo?
My team is planning a migration from subversion to git. We support 3 applications... 1 is primarily for internal users, 1 is for corporate "partners" and 1 is for end users. These applications share ...
-2
votes
2
answers
688
views
If you decide that branching is a bad thing, then why use Git over SVN? [closed]
I have used Git and Mercurial a bit over the past ten years and appreciate and prefer them, but most of my experience is with SVN. If it is decided within a corporate programming group that branching ...
5
votes
0
answers
196
views
Restructuring SVN repo for migrating to git [duplicate]
We currently have a SVN repo structured like so
/trunk/library/libA
/libB
/libC
.
.
/trunk/tools/toolA
/toolB
.
...
9
votes
1
answer
2k
views
Version control of a website : dev/production front-end files
I'm trying to think of a better way to version control our website projects. Keep in mind I'm only a front-end dev so I don't have a profound knowledge of VCS.
Workflows are changing, and past ...