Tagged Questions
On many version control systems with atomic multi-change commits, a changelist, change set, or patch identifies the set of changes made in a single commit. This can also represent a sequential view of the source code, allowing the examination of source "as of" any particular changelist ID.
17
votes
4answers
4k views
How do I display a particular changelist number in p4v?
When viewing submitted changelists in p4v, is there a way to display a particular changelist number? That is, how I do the equivalent of p4 describe in p4v? Can I filter for a particular changelist ...
5
votes
1answer
406 views
How do you remove a file from a subversion changelist?
I had a file in a subversion changelist that I later reverted. It is now still listed in the changelist even though it has no modification. How do I get rid of this changelist?
$ svn status
--- ...
3
votes
1answer
447 views
SVN diff with revision range and changelists
I'm having some troubles with SVN changelists and svn diff. Particularly I want to obtain the change history of a certain list of files for a specified range of revisions.
SVN changelists seem like ...
3
votes
1answer
164 views
How to only commit files in the unnamed changelist with SVN?
I am using the command line SVN client (for speed reasons) and have a changelist of files that I wish to ignore on each commit (much like TortoiseSVN does). Is there a way to commit all files except ...
3
votes
2answers
782 views
Reusing Django Changelist Outside of Admin Site
The Django changelist table is really cool - searchable, filterable, multi-select actions etc.
I'm building a custom backend for an app and I keep realizing: this is exactly what I need, I should ...
2
votes
2answers
145 views
Intellij IDEA Persistent Changelists (after commit)?
In Intellij IDEA 9 or 10, is there something akin to a persistent changelist? I'd like to continue to monitor a list of files after the commit; I'd like to continue making updates based upon a single ...
2
votes
1answer
2k views
How to filter queryset in changelist_view in django admin?
Let's say I have a site where Users can add Entries through admin panel. Each User has his own Category he is responsible for (each Category has an Editor assigned through ForeingKey/ManyToManyField).
...
2
votes
2answers
444 views
check if files have been changed with Subversion svn
I'm using Subversion svn under windows in cmd.
How can I check which files have been changed from the revision before? I tried
svn.exe info --changelist xx # xx is a revision number
But there is ...
2
votes
2answers
553 views
Perforce auto resolve (on a pending changelist) from the command line?
I want to safe resolve all the files in a pending changelist.
Currently, the only way I know to do this is to pass p4 a list of files.
SET CHANGE_NUMBER=default
SET CHANGE_FILES=files.txt
DEL ...
2
votes
2answers
1k views
How do you quickly find/delete all empty changelists in Perforce?
I was wondering what could be the point in trying to delete committed changelists, because a committed changelist is not supposed to be empty.
But then I am playing with the tutorial depot, and using ...
2
votes
6answers
2k views
Easy way to create perforce changelist with multiple filespecs
I wish to submit a changelist with multiple filespecs, e.g. ...this... ...file.h ...theother.... Perforce won't let me. I could create a changelist from a file but I do want a chance to review the ...
1
vote
1answer
53 views
Django admin changelist filtering / link to other models
I have the models set up like this:
class ParentModel(models.Model):
some_col = models.IntegerField()
some_other = models.CharField()
class ChildModel(models.Model)
parent = ...
1
vote
1answer
121 views
Get data displayed in a django admin change_list
I've got an admin change_list with a list of companies and thier addresses. I want to plot this onto a google map. I've got google maps coming up, and the right data displaying in the change_list, and ...
1
vote
3answers
472 views
Perforce: How to find the original number of a change list
In perforce changelists get renumbered on submission. So for e.g. when the changelist was created it would be numbered 777 , but on submission of changelist it would get renumbered to say 790.
My ...
1
vote
1answer
107 views
How do you get the branch spec that was used for a specific integrate in the depot history?
P4V's depot view shows the various branches and their paths, but not the branch names.
The branch spec (or branch mapping) contains the "name" of the branch.
Let's assume that user X has branched ...
0
votes
0answers
45 views
Perforce: How to checkout file same file from different version?
For example, I have 100s of files checked out in a changelist:
//Development/MyProject/Version1.0/Coord/File1.cs
//Development/MyProject/Version1.0/Coord/File2.cs
...
...
0
votes
1answer
215 views
django admin use changelist_view queryset for geraldo report
I have the following variable in my admin:
class ModelAdmin(admin.ModelAdmin):
qs = QuerySet
...
and the following def within the admin:
def changelist_view(self, request, ...
0
votes
3answers
776 views
How Do I Show Django Admin Change List View of foreign key children?
I'm working on an app with a Model heirarchy of Campaign > Category > Account. Ideally I'd like to users to be able to click on a link in the campaign admin list view and go to a url like ...
0
votes
1answer
89 views
Is there a way to get subversion to add files to a default changelist?
I'd like to be able to tell svn to automatically add new files to a default changelist, mostly as a workaround to svn's lack of a "no changelist" filter. Is there an official way of doing this? I can ...
0
votes
1answer
350 views
User-based model instances filtering in django admin
I'm using django's admin to let users manage model instances of a specific model.
Each user should be able to manage only his model instances. (except for administrators which should manage all).
How ...
0
votes
5answers
205 views
Subversion: Can I commit several checked-out folders at once?
Let's say I have working copies of several different folders from my SVN repository scattered across my file system. Their parent directories are not part of the repository. E.g.
somedir1\
...
0
votes
2answers
501 views
Perforce: Re-reverse-integrating a changelist
(I've already asked this on SU; while I appreciate the Tumbleweed badge there, I'd prefer an answer...)
I have a reverse integration pending that I'd like to perform again on the files that are ...