The revision-history tag has no wiki summary.
1
vote
2answers
65 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
742 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 ...
90
votes
2answers
10k views
Git: How to split up a commit buried in history
I flubbed up my history and want to do some changes to it. Problem is, I have a commit with two unrelated changes, and this commit is surrounded by some other changes in my local (non-pushed) history.
...
131
votes
4answers
25k 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?
3
votes
1answer
794 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 ...
30
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 ...
32
votes
7answers
28k views
How to view file history in Git?
With Subversion I could use TortoiseSVN to view the history/log of a file.
How can I do this with Git?
Just looking for history record for a particular file, and then the ability to compare the ...
75
votes
5answers
21k views
How do I combine the first two commits of a Git repository?
Suppose you have a history containing the three commits A, B and C:
A-B-C
I would like to combine the two commits A and B to one commit AB:
AB-C
I tried
git rebase -i A
which opens up my ...