Revision: A release of a piece of software which is not a major release or a bugfix, but only introduces small changes or new features.

learn more… | top users | synonyms

0
votes
0answers
7 views

User submitted content to mysql with moderation: separate table?

In an mysql table I would like to get data from user, however the data would need to be moderated by admin first. My question is that is it normal to just insert into the original table and use a ...
0
votes
0answers
13 views

Atlassian Fisheye stopping SVN indexing at certain revision with StackOverflowError

Last week we updated to Atlassian Fisheye/Crucible 3.0.0. Two days later the scanner/indexer stopped at a certain revision (our repository is on SVN) and since then displays that this same revision is ...
0
votes
0answers
26 views

How to get SVN revision in Gradle for Android?

I have field (svn revision) in resource. How can I get svn revision in my field using by Gradle, that not to do that by my hands?
8
votes
3answers
2k views

How to delete a specific revision of a github gist?

I created a Gist on GitHub and I saw informations I don't want anyone to see. I updated the file since, but everybody can still access the old revision of the file. Except deleting the Gist, is there ...
0
votes
0answers
25 views

Android - crash without stacktrace when using support library rev 13

Recently I updated my android support library to the latest one - revision 13. Since then, it began to crash when I opened an activity that uses ViewPager and Pager adapter along with Tabs. The weird ...
0
votes
1answer
27 views

Mercurial: how to get previous changeset id of a specific file

I would like to get the previous revision for a specific file, no matter if it was changed in the tip or not. For example, I have a repo that has a tip at changeset 226 $:~/sandbox$ hg log -r -3::. ...
4
votes
2answers
583 views

Including SVN revision of a project in C source code

How to include SVN revision of my project (not file revision) in C source code or in Makefile?
1
vote
2answers
29 views

Where does MVC3 save the revision number?

The actual version number of my solution is placed in Properties/AssemblyInfo.cs: [assembly: AssemblyVersion("1.0.0.*")] The last part of that number is an askerisk. It will be replaced by an ...
0
votes
0answers
12 views

Hibernate ForeignKey to Specific Revision Number

I want to have a sort of entities in Hibernate that besided normal id value (auto_incremented) will also have a field showing current version (some entities are audited [Envers]). This field I would ...
1
vote
1answer
85 views

Mercurial: get a list of revisions that match a partial revision number

I am trying to create an autocomplete textfield for selecting a Mercurial revision (full node id). I can use hg log --template '{node}\n' to get all revisions, but it takes over 1s for that command to ...
6
votes
4answers
15k views

SVN: Is it possible to get the list of revision numbers for given path?

I am making a PHP tool that connects to a repository, downloads the list of commits and stores them locally. However, due to the possibility that certain repositories are HUGE and grabbing their log ...
0
votes
2answers
45 views

Redmine revision keywords not working after migration

A couple of days ago we did a long due migration from Redmine 0.9.3 to 2.2.0. Everything migrated perfectly and seemed to work right away. But we just found one function that no longer works. Redmine ...
24
votes
5answers
15k views

Getting the subversion repository number into code

I'd like to implement a way of recording the version of a project within code, so that it can be used when testing and to help track bugs. It seems the best version number to use would just be the ...
5
votes
4answers
4k views

SVN Revert Trunk, remove a revision as if it never existed?

Is it possible in the svn server to remove a revision as if it never existed? So we have the following revisions: 1004 // Commit of some bogus code that broke the build and was just wrong 1003 // ...
1
vote
1answer
31 views

Is it possible to change SVN hosting and preserve the revision history?

Question as in title. I'd like to change my SVN hosting - can I move my project to another one and not lose the revision (change) history?
5
votes
2answers
4k views

Floyd-Warshall Algorithm Logic - Stuck

I am trying to use this logic to understand what is going on with the adjacency matrix, but i am massivley confused where it says about interspacing for a b c d ..... Could anyone explain what is ...
0
votes
1answer
56 views

Check updates in specific directory in svn c#

I'm trying to check if a certain svn subdirectory was updated, and if so, update my entire working directory. Here is what I do: SvnClient svnClient = new SvnClient(); SvnWorkingCopyClient ...
0
votes
1answer
52 views

Ivy: Using dynamic revisions

I'm having problems understanding how I to use dynamic revisions of Ivy effectively in my Java projects. Currently, I have the following layout: lib-a revision: 1.0.0 status: release dependencies: ...
0
votes
1answer
29 views

Get Full Mac OS version including revision in PHP

OK I have looked everywhere and cant find this one out. I have a Windows XP, made into a server and i have created a webpage in PHP that display's the current IP Address, OS and current Browser, I am ...
0
votes
3answers
227 views

Subversion and revision engineering - what are the best web resources to read about?

We are migrationg from CVS to SVN and embracing some kind of revision management in order to enforce order to development/testing/release cycle. We are currently testing, developing and releasing on ...
0
votes
0answers
36 views

foreignKey table in habtm relationship gets wrongly updated with the latest revision id

I have two models in a habtm relationship: Person & Company. Both of them have the revision behaviour: ...
0
votes
0answers
157 views

Using java to get revision information in MS-Word 2007

Is there some java library can get revision information in MS-Word 2007 ? Apache POI is the well known java tool for MS Office document, but no API found for getting revisions. Geln
0
votes
0answers
25 views

retrieve_revisions google drive ruby

I am attempting to query the Google revision history with the code below def retrieve_revisions(client, file_id) drive = client.discovered_api('drive', 'v2') api_result = client.execute( ...
1
vote
2answers
2k views

with svn, check the revision number when offline

I'm offline (well, to be exact my svn repository in unreachable right now), but I have a fully fledged working copy on which I am, well, working :-) Now I need to know the revision number of a file. ...
38
votes
4answers
19k views

How do I view an older version of an SVN file?

I have a SVN file which is now missing some logic and so I need to go back about 40 revisions to the time when it had the logic I need. Other than trying to view a diff of the file in the command line ...
16
votes
10answers
2k views

Are there revision control systems for images?

I would make crazy use of such a revision control. If it doesn't exist - where would to a good starting point for building one? I can probably make a lot of designs and interaction flows, but to ...
0
votes
1answer
55 views

stop wordpress revision and autosave to page

Wordpress revision and autosave is keeping reverting my changes to a wordpress page. No matter how many changes I make always reverting to that point. Is there some solution to stop doing that but ...
85
votes
14answers
34k views

How to get the git commit count?

I'd like to get the number of commits of my git repository, a bit like SVN revision numbers. The goal is to use it as a unique, incrementing build number. I currently do like that, on ...
0
votes
0answers
96 views

How to create patch file between two revisions in TortoiseSVN?

I'm using TortoiseSVN 1.7 and want to create patch file between two revisions. I've searched, but these threads How do I create a patch from diff between revisions using TortoiseSVN? Creating a patch ...
1
vote
1answer
248 views

Force SVN (tortoise) to check-in a file to update Revision

I have a file that contains the revision placeholder in the form: $Rev: 123456 $ The file is checked-in only if it changes, so, if I want to commit it just to update the revision number, I am ...
1
vote
1answer
680 views

Unable to tag SCM when I using maven release plugin

when I using maven release plugin,I encountered some questions,the most one is tag scm failed,the error is : svn: “svn://192.168.5.222/show/test-show/trunk/show” does not in the revision 0 . at ...
0
votes
1answer
49 views

svn; detect missing revisions between different branches

Is there a way to setup relationships between the SVN branches so that we can detect if there are any missing revisions? We have multiple developers working on different branches (A,B,C) and fixes ...
0
votes
0answers
81 views

Loading different entry revisions in ExpressionEngine 2 per environment

I'm developing a website using ExpressionEngine 2, which will sit on both a staging and production environment, both with their own database. We will be running a cron job to synchronise the databases ...
16
votes
2answers
3k views

find svn revision by removed text

Is there a way to find an SVN revision by searching for a text string that got removed in the file? I know the exact text to search for and which file to look in, but there are hundreds of revisions. ...
1
vote
0answers
51 views

Eclipse Subversive, one commit, multiple revision numbers

I got multiple projects in the same repository location. If I commit changes to multiple projects in one commit (select them all, and commit), Subversive creates one revision per project. For ...
2
votes
1answer
59 views

access heroku deployment revision

Heroku Activity tracks release revisions of your application as v1, v2, etc. How can an application programmatically read its version? I have a single-page application using backbone, and would like ...
0
votes
1answer
37 views

How to move a base revision to another branch in mercurial?

I've read this question: How to move some changeset to a new branch in mercurial But my problem is slightly different. What I have is this: NULL -> 1 -> 2 -> 3 -> 4 -> etc #default ...
1
vote
1answer
55 views

Redmine: associated revisions not updating for non-master branches

I have redmine configured with a git repository. The repository updates properly, and I can browse through all repository branches in redmine with no problem. However, associated revisions don't ...
1
vote
0answers
168 views

using svn log to extract commit messages between tags when revisions overlap across branches

I always use the svn log command, e.g.svn log -rXXXX:YYYY to get the commit messages between two tags in my SVN repository. The problem I sometimes find is that if I am doing a large release that ...
0
votes
1answer
100 views

how to get partial update from subversion

I'm in the following scenario in my application's repository: revision 7 (2 changed files, 1 added file) revision 6 (4 changed files) revision 5 (2 added, 2 deleted, 2 changed) revision 4 (3 changed ...
0
votes
2answers
47 views

git diff between 2 revisions included

I'm doing a : git diff --diff-filter=AM --name-only 59ade6e..c1fc4d8 The 59ade6e hash is a commit where I added all my files (my first commit). But when I execute my command it seems that it ...
5
votes
2answers
6k views

Git (TortoiseGit) - How to change the HEAD to a previous revision

When using Git with TortoiseGit: Does somebody know how to change the HEAD to a previous revision for a complete repository and/or just a single file? For example i have a repository containing ...
1
vote
1answer
47 views

Local development with FB Login and collaborative Github workflow

My webapp is currently running off a shared googleDrive folder for easy updating and collaboration between a few developers. I am brining-on more developers though so I need a better workflow for ...
0
votes
1answer
40 views

make a cross change in a file with mercurial

I'm new to mercurial, so may be my question is stupid. Let say you made a mistake when you first started working on your code. For example, you putted <!html DOCTYPE> instead of <!DOCTYPE ...
4
votes
3answers
1k views

Automatic file-versioning (like Dropbox)

is there a tool that does automatic file-versioning (for local files), like dropbox? Seeing how easy it is to restore older versions using dropbox compared to svn... [EDIT] I know how svn and ...
0
votes
0answers
82 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
1answer
77 views

How do I remove SVN revision? [duplicate]

Possible Duplicate: How to remove an accidentally put large file (4GB) from Subversion repository? I'm using a SVN hosting provider. I checked in some large binaries in and went over my 2GB ...
0
votes
2answers
129 views

Subversion create mirror of local

In our small class group, we've had a stuffup with subversion (we are still learning how to use it properly). Basically, the whole last revision is bogus. What I would like to do is make the next ...
2
votes
2answers
99 views

SVN: is it possible to get svn info for a given revision number of a branch

Is it possible to get svn info for a branch for a specific revision number. For example if the latest working copy of a branch has revision number 56, can I get info for the same branch for revsion ...
7
votes
3answers
3k views

How to use tags for versioning in git gui

I'm a complete and utter noob, so be gentle! I'm using git gui, and never touching the command line interface. I'm a noob, and some of the people i'm working with are even noob-ey-er... Current ...

1 2 3 4 5 6