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
5
votes
1 answer

How to prevent alembic revision --autogenerate from making revision file if it has not detected any changes?

I have project where I'm using SQLAlchemy for models and I'm trying to integrate Alembic for making migrations. Everything works as expected when I change models and Alembic sees that models have changed -> it creates good migration file with…
mmway
  • 93
  • 1
  • 10
5
votes
2 answers

Mercurial and mysql

I'm using Mercurial for revision control of few projects. I have Mercurial installed both on my VPS and on my local machine. I push changes from my local machine to the remote server. Everything is okay. However, I make sometimes changes to the…
Omar Abid
  • 15,753
  • 28
  • 77
  • 108
5
votes
2 answers

Git checkout using wildcard to a specific revision

I have been seeking it on Google for 2 hours and still can't find the solution. I want to checkout all files with wildcard to a specific revision. I used following command: git checkout 663090b1c 'src/app/**/*.spec.ts' But it says: error: pathspec…
Thanh Nguyen
  • 5,174
  • 11
  • 43
  • 74
5
votes
0 answers

How to modify Jenkins Git Build Data Revision to display the remote repo address

I have a Jenkins pipeline using the following code to checkout the project to build. checkout([$class: 'GitSCM', branches: [[name: "*/develop"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CloneOption', noTags: false,…
ncubrian
  • 421
  • 1
  • 3
  • 14
5
votes
1 answer

what can i use to create a revision tree graphic on linux

Which tool should I use in order to create a revision tree for a whole svn repository on linux. It's going to be like a visualization of every action made on that repository.
xzvkm
  • 187
  • 3
  • 12
5
votes
1 answer

How can I get the build number of a Visual Studio project to increment?

Why does building a project in Visual Studio not increment the Build number? I've got this in AssemblyInfo.cs: [assembly: AssemblyVersion("1.5.*")] ...and this in frmAbout's constructor: Version versionInfo =…
5
votes
5 answers

Drupal 7 publishing options unavailable

I have a Magazine Article content-type set up, and a corresponding Magazine Editor role who should have permissions to create and publish articles. When logged in as administrator, I can see the usual Publishing Options tab at the bottom of the node…
Wintermute
  • 2,973
  • 4
  • 32
  • 52
5
votes
1 answer

What does an Alembic revision ID represent?

I have just started looking at Alembic, and coming from Django, where we have South to migrate our database schemas (which is soon to be included) which uses a friendly old fixed-width number like 0037_fix_my_schema.py to talk about the order in…
5
votes
4 answers

How to make "git describe" mention the presence or absence of local changes?

How can I check, in a script, if local changes are present? Perhaps in combination with git describe?
Adrian Panasiuk
  • 7,249
  • 5
  • 33
  • 54
5
votes
3 answers

How to commit subversion revision with every commit in order to refer between two repositories

Consider software spread in two separate repositories, Pub and Priv. Pub repository is public. Priv is closed. An continuous integration server builds both Pub and Priv when either side changes. It then creates downloadable binaries from Priv that…
Wayne
  • 51
  • 2
5
votes
1 answer

SVN revision number and timestamp

I'm trying to display the latest SVN revision number and timestamp on the title bar of a web application. My current code displays the revision number but not timestamp. Both are not coming together. I'm using the following code.
coder247
  • 2,913
  • 19
  • 50
  • 70
4
votes
2 answers

Subversion: Get all files from a revision

How do I export/get all the files belonging to a revision? For example: On revision 5434 if we have commited 5 files, how do I get all the 5 files on the specified revision? Something like svn export with revision number, but I only want the files…
Raja
  • 139
  • 1
  • 1
  • 7
4
votes
1 answer

Checkout the git commit corresponding to a certain revision from the old SVN repository?

I migrated my repository from SVN to git. I used THIS site. Now I have a bug in revision X. How do I checkout from my git repository, knowing only the revision number from my old SVN repo? Thank you for your Help.
Iron
  • 477
  • 4
  • 19
4
votes
2 answers

SVN Export with revision history problem

I need to provide our clients with a dump of a single sub directory in our SVN repository along with the revision history if possible. I know that you can do a dump but I don't believe you can tell it to isolate a single sub directory in the repo.…
James
  • 12,636
  • 12
  • 67
  • 104
4
votes
3 answers

Using git to identify all modified functions in a revision

Is there a good way to use git to identify all the modified functions in each revision in the history? I've tried using the -p switch, but it doesn't seem to work in the same way that svn's show-c-function parameter works. My assumption is that…
swrittenb
  • 326
  • 2
  • 13