Questions tagged [revision]

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.

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

Reference: http://www.diclib.com/revision/show/en/en_foldoc/R/664/300/0/6/10947

470 questions
3
votes
5 answers

Getting SVN working copy revision number into VersionInfo.cs

All our projects in our SLN shares a VersionInfo.cs which holds the project version number [assembly: AssemblyVersion("0.0.1.0")] [assembly: AssemblyFileVersion("0.0.1.0")] I want to staticly define the 3 first parts of the version number and the…
Anders
  • 17,306
  • 10
  • 76
  • 144
3
votes
2 answers

Time series smoothing, avoiding revisions

This time my question is more methodological than technical. I have weekly time series data which gets updated every week. Unfortunately the time series is quite volatile. I would thus like to apply a filter/a smoothing method. I tried…
chameau13
  • 626
  • 7
  • 24
3
votes
1 answer

Visual Studio 2003 pre build script can't find 'svn' command

I'm using a script to get the subversion head revision number from a subversion repository derived from the script found at http://blog.guymahieu.com/2008/06/09/getting-the-svn-head-revision-number-from-a-windows-batch-file/. The script works fine…
Norbert
3
votes
3 answers

How to run svn update in a loop to import commits to git?

Current setup I am running a local git repository in parallel to a svn checkout in the same folder. Whenever something new happens on the svn server I run svn update to download the commits. Then I git add && git commit the whole set of changes to…
JJD
  • 50,076
  • 60
  • 203
  • 339
3
votes
1 answer

How should CouchDB revisions be treated from a design perspective?

Near as I can tell, CouchDB revisions are not to be treated like revisions in the document versioning sense of the word. From glancing at other posts, they seem to be regarded as transient data that exists until a coarse-grained compact operation is…
Jacob Groundwater
  • 6,581
  • 1
  • 28
  • 42
3
votes
1 answer

Is it possible to create a new revision using google apps script or google drive api?

Searched a bunch and found pages regarding list/get/update revisions, but nothing about actually making a new revision. Instructions made it sound like if I set published: true in the requestBody it would create a new revision for the current state…
3
votes
2 answers

Is there a way to test a fully-managed Cloud Run revision before sending traffic to it?

I use Google's Cloud Run (fully managed) to run an app that I'm building. When I deploy a new revision, I'd like to be able to verify that various health checks are ok before I start sending it traffic, but I haven't been able to find a URL for…
3
votes
1 answer

How to get the revision at a specific date, of a file from a Github repository?

How many of you ever clicked on a Github link to a file version, just to find out that who made the link didn't care of putting a fixed commit sha (or, protip: simply pressing Y) when copying it from Github, and that the link is expired because now…
Kamafeather
  • 8,663
  • 14
  • 69
  • 99
3
votes
1 answer

Is it possible to deep link to a specific revision of an Azure DevOps wiki page?

I would like to generate a hyperlink to a read-only view of a specific revision of an Azure DevOps wiki page. The links provided on the Revisions page navigate to a commit review page with compare and preview tabs and include a Revert button (when…
3
votes
4 answers

Visual Studio with SubWCRev auto-build versioning problem

Folks, I'm using VS2010 and trying to sync the build version of my project with my Subversion repository using SubWCRev. This is all working correctly, but I can't quite get my head around one thing. My template file consists of this : #define…
Redeye
  • 1,582
  • 1
  • 14
  • 22
3
votes
3 answers

SVN - Commit to older revision version

we have a svn repository on a server, and some clients updating/commiting to it. Now, the server crashed yesterday and the backup available is a week ok old, and has an older svn head saved. Let's say the Head from the backup is revision 2895. The…
user472532
  • 33
  • 3
3
votes
3 answers

Why does Subversion/TortoiseSVN skip revision numbers if a file has only been changed one time?

I am fairly new to Subversion/TortoiseSVN and I want to know if there is a way to prevent Subversion from skipping revision numbers on files so that I can track the amount of time a file is changed based on it's revision number: Example: I have…
dewalla
  • 1,317
  • 8
  • 18
  • 42
3
votes
4 answers

Subversion's hidden revision files

You know how Subversion stores a copy of every file it has checked-out in the hidden .svn folders? The website I'm building is pretty big (has over 1Gig of PDF files). These PDF files will very rarely change throughout the existence of the…
Luke
  • 20,878
  • 35
  • 119
  • 178
3
votes
1 answer

How do I determine the revision number of an Android build?

I know how to get the API level, android.os.Build.VERSION.SDK_INT, but there are also several revisions of each level release, e.g. for 2.1 there's rev 1 and 2. How do I determine the revision of a build? The reason i'd like to know this is that I…
hermo
  • 515
  • 1
  • 4
  • 13
3
votes
2 answers

delta-dictionary/dictionary with revision awareness in python?

I am looking to create a dictionary with 'roll-back' capabilities in python. The dictionary would start with a revision number of 0, and the revision would be bumped up only by explicit method call. I do not need to delete keys, only add and update…
shabbychef
  • 1,940
  • 3
  • 16
  • 28