Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
42 views

How do subversion clients deal with a historic change in a repository?

I had to make a change to a subversion repository database. I created a dump, filtered out a revision and created a new database. This new repository of course shares a lot of content with the ...
2
votes
3answers
140 views

Git - go to particular revision

I cloned a git repository of certain project. Can I turn the files to the initial state and when I review the files go to revision 2, 3, 4 ... most recent? I'd like to have an overview how to project ...
1
vote
2answers
46 views

Why does HEAD~394 not work if I have 394 unpushed git commits?

I have the following alias: unpushed== !GIT_CURRENT_BRANCH=$(git name-rev --name-only HEAD) && git log origin/$GIT_CURRENT_BRANCH..$GIT_CURRENT_BRANCH --oneline when I execute this with ...
1
vote
2answers
251 views

Get history of file changes from TFS to implement custom “blame”-behaviour of exceptions

I'm trying to make some way of figuring out who to "blame" when an exception is thrown in our application (at work). It could be me causing it of course but I can accept that :). But to do this I need ...
1
vote
1answer
292 views

Ruby on Rails: How to track changes like StackOverflow implements its revision history?

If I were to implement a system identical to the StackOverflow question revision history using Ruby on Rails, what would I need to do in order to achieve that? I am creating a site that acts like a ...
0
votes
2answers
31 views

Google Docs like revisioning?

I need to implement similar revisioning history what Google Docs documents have. I'm just wondering how they have implemented revisioning. If you do one change, then that change is saved. Does that ...
0
votes
1answer
71 views

Mercurial: How to move a project/module, but keep the revision history

Consider the following multi-module project (within a single repository): Module A (i.e. parent) - Module 1 (various core stuff) - Module i - Module 2 (non-core, depends on 1) - Module ii ...