2
votes
5answers
223 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
1answer
24 views

Permanentely remove files from a git repository while preserving the history

Here is my situation: I have a git repository with the following layout myrepo/ myrepo/index myrepo/data/data01 myrepo/data/data02 myrepo/data/data03 ... I have a few hundred commits, each of ...
2
votes
0answers
68 views

determine ancestry references between two commits in git

Let's assume we have two commits A and B in the same repository and that A is an ancestor of B. That has been checked with exist status 0 for: git merge-base --is-ancestor A B or, in older way if ...
1
vote
1answer
36 views

How can I use Git to add new commits to the current branch based on a previous commit in that same branch?

Let's say I have 2 commits in my git log. Now I want to go back to the first commit and modify some files and add that as the third commit. When I type in git log I want 3 commits to be there on the ...
1
vote
0answers
26 views

Can I affect the order/column of branches displayed in gitk and Eclipse Egit

When doing gitk --all I get a nice summary of commits/branches/tags across a whole repo. However, the way the branches are displayed is not always consistent, and it is also different to the method ...
4
votes
1answer
147 views

SVN history is lost in git

We moved a project from svn to git recently. Before moving to git, some folders were re-organized in svn. Now, git doesnt show the complete history for files in the folders that were moved/re-named ...
3
votes
1answer
88 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
1answer
122 views

How to overcome git merge history ambiguity/obfuscation with '--ours'?

I am wondering if there any tools for providing a more verbose file history, especially with regard to merges where our changes are kept. This problem is best explained with an example. Let's say I ...
4
votes
2answers
355 views

How do I reword the very first git commit message?

I have a working tree containing 3 commmits: ➜ ~myproject git:(master) git log commit a99cce8240495de29254b5df8745e41815db5a75 Author: My Name <my@mail.com> Date: Thu Aug 16 00:59:05 2012 ...
2
votes
4answers
301 views

Merge old git commit with HEAD at master

I made some mistakes when merging commits of my colleagues. Now, we have discovered it and we need to apply old commit again, to choose manually the changes in the files. The situation looks like ...
4
votes
1answer
135 views

How to retain git authorship and commit date when using git-svn to push to a subversion repo?

We begin with a new, empty subversion repository and an existing git repository that I would like to 'push' to and retain all history and authorship (even just the username if possible). Using "git ...
0
votes
2answers
92 views

Automatically rewrite git history for open source release

I'm currently releasing several projects as open source. Typically the complete source is provided as ZIP archive or checked in at an open source repo. This makes analysis by ohloh difficult. In ...
1
vote
4answers
116 views

Using git, how can I create a mostly history-less clone of a repository

I have a 2 year old repository that started off as essentially a private repository, so it contained in it's history at different points: key files, encryption keys, large sets of images in various ...
0
votes
0answers
170 views

Updating git svn info/revision number for git repo (A) cloned from git-svn repo (B)

Okay, I am not asking how to synch the changes back and forth between the two repos (I am able to do that via normal push and pull), but a way to update the git svn info (particularly the revision ...
6
votes
4answers
3k 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
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 ...
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. ...
134
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?
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 ...