Tagged Questions
1
vote
1answer
15 views
Restore revision history of a copied file using Perforce
I copied a bunch of java classes into another java package outside of perforce by accident and made a bunch of changes to them. I now realised that the revision history of those files has been lost ...
2
votes
5answers
252 views
Understanding Git Graphs
I am new to Git and need help understanding Git history graphs, i.e. the relationship between commits and merges as they are displayed on the graph in tools like SmartGit or GitGui. In the image ...
0
votes
0answers
5 views
Repository information for open source projects [closed]
I am working on association mining and looking for version history os an open source software. In order to determine the pattern, I am looking for projects with considerable about of data.
I tried ...
0
votes
1answer
85 views
Lightswitch - get old value of modified field (database value)
I'm developing an Lightswitch app which has some kind of revision control. When a user changes an item and clicks save, instead of updating that row in the database I want a new row with the modified ...
1
vote
1answer
55 views
Revision control of data inside Lightswitch
I'm developing a Lightswitch application that will be accessed by different users. Some background info..
When a user make some changes to one or multiple rows he/she should be able to save those ...
1
vote
2answers
74 views
SVN - Can't undo revert
OK, I just reverted a few hundreds of lines of good code. I know, I know. That's all my fault, nothing to do with SVN or any version control system. I just was very tired and very distracted and ...
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 ...
3
votes
1answer
94 views
How can I “Censor” the history of a git repository?
I currently have a personal git repository for some software that I have been working on. The repository used to contain personal information of other people in some of the configuration files, which ...
1
vote
2answers
89 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 ...
141
votes
4answers
27k views
How can I view a git log of just one user's commit's?
When using 'git log' how can I filter by user so that I see only commits from that user?
34
votes
3answers
9k views
Does deleting a branch in git remove it from the history?
Coming from svn, just starting to become familiar with git.
When a branch is deleted in git, is it removed from the history?
In svn, you can easily recover a branch by reverting the delete ...