The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
88 views

How to archive old revisions from Apache SVN on linux server

I have a site through which user can write their own Screenplays. This screenplays are saved in the form of revisions. Apache SVN has been installed. I want to save only the last 5 revisions for ...
4
votes
1answer
147 views

SVN history is lost in git

We moved a project from svn to git recently. Before moving to git, some folders were re-organized in svn. Now, git doesnt show the complete history for files in the folders that were moved/re-named ...
2
votes
1answer
30 views

Yii: How to manage changelog for a model?

CREATE TABLE `personchanges` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `person` int(11) unsigned NOT NULL, `msg` mediumtext NOT NULL, PRIMARY KEY (`id`), KEY `person` (`person`), ...
1
vote
1answer
45 views

How can I get the list of mercurial patches that would apply cleanly in a linear order?

I'm looking for a command that will output a list of sequential patches that would apply cleanly if the repository was in a specific known earlier state. Here's an hg glog of a repository that ...
1
vote
1answer
268 views

Unable to create accurate copy of a Kinetic.js stage / layer

I'm trying to build in a change history, rather than a diff style history, I've opted to save the entire object. This becomes problematic because each copy of the object updates along side the ...
2
votes
0answers
67 views

determine ancestry references between two commits in git

Let's assume we have two commits A and B in the same repository and that A is an ancestor of B. That has been checked with exist status 0 for: git merge-base --is-ancestor A B or, in older way if ...
1
vote
0answers
26 views

Can I affect the order/column of branches displayed in gitk and Eclipse Egit

When doing gitk --all I get a nice summary of commits/branches/tags across a whole repo. However, the way the branches are displayed is not always consistent, and it is also different to the method ...
1
vote
0answers
59 views

How to get a detailed list of google doc revisions in Drive API

I am trying to find a way to retrieve a detailed list of google doc revisions using Google Drive API. I have tried to implement it in Java, and it does return a list of 10 revisions. However, this ...
0
votes
0answers
11 views

spreadsheet revision history

I have been thinking that could be of great help for me to have a "revision history" easily/offline or "time arranged" of the changes made on the working cells. When user changes values or ...
0
votes
0answers
71 views

Diff two txt files using php diff-match-patch library

I am writing a customized document revision program. I read in all revisions of a document (in .txt format), and I adopt php diff-patch-match library to do the diff calculation. I think I am getting ...
0
votes
0answers
170 views

Updating git svn info/revision number for git repo (A) cloned from git-svn repo (B)

Okay, I am not asking how to synch the changes back and forth between the two repos (I am able to do that via normal push and pull), but a way to update the git svn info (particularly the revision ...