0
votes
0answers
10 views

How to show branch merging after svn2git in gitk

I used svn2git to migrate a svn project with branches. The branches show up in gitk, but the graph does not show the branches merge back in. Check in comments indicate where the merges happened. Is ...
0
votes
2answers
40 views

Compare git commits on different branches [duplicate]

I have two branches - master and experimental. How can I see which commits are in experimental and not in master? It would be nice to see this in gitk, but in the terminal is also ok.
2
votes
3answers
116 views

git client which can do a directory diff

I know that the latest git can use this command to directory diff two versions: git difftool -d <sha1> <sha1> But I can't find any git clients(GUI) which can do this job. I've tried ...
1
vote
1answer
48 views

Gitg behavouir as gitk --all

I switched to gitg from gitk to visualize my git tree. There is one thing I can't stand. Let's say I have two branches (dev, master) that look like this: Anytime I checkout to master the ...
0
votes
1answer
84 views

view the git repository on remote linux server -> in Windows?

Problem: Need to view Git history visually in windows, repository is on remote Linux server (Ubuntu). Question: What are two easy ways to view the git repository on remote linux server -> in Windows? ...
4
votes
1answer
96 views

How to make Git Extensions browser show all commits like gitk --all

The Git Extensions repository browser seems to be more versatile than gitk in many ways. However, my very favorite command line option for gitk is --all. gitk --all shows all commits, including ...
1
vote
1answer
46 views

Display gitk log in reverse order

Is there any way to reverse the order of the visual commit log view that displays in gitk? I'm talking about visual representation that renders in gitk in color as a tree view; i.e., the GUI version ...
2
votes
2answers
32 views

Remove a branch including its commits

I have created a branch where I was trying an approach to a problem which didn't work out, so I want to delete the branch, including all commits I made on it. For the sake of the argument, my branches ...
1
vote
1answer
49 views

Tell gitk to draw “busier” branch on the right

In our project we use a master branch for merging in regular feature branches (left side of the image), and additionally a long-running branch to integrate upstream commits (right side of image). We ...
1
vote
1answer
44 views

gitk lost commits

I was using git gui and my wifi was lost during an operation. Now, when I look at my commit history there are several commits missing, and a gap in the history. Everything before the gap is connected ...
1
vote
1answer
61 views

Some git tags not visible in gitk

In the gitk view, I notice some (but not all) git tags missing. git tag shows those tags, and I am also able to checkout by specifying those tags, so the tags got created correctly. What should I try ...
1
vote
0answers
65 views

Need help understanding GITK visualization of commit history

NOTE: Have gone through a few other questions on gitk but have not found an answer to my question. The image on the left shows all commit history for master. I committed and pushed in a file to ...
7
votes
1answer
99 views

Using gitk to view the full history of a moved file

After much searching, I have not found a satisfactory method that is easy to use to view the complete history of a moved file in Git and more importantly in Gitk. Using "git log --follow [filePath]" ...
1
vote
1answer
136 views

Using gitk, can I see the difference between 2 commits?

I have tried: git diff sha1 sha2 But the output isn't the best, is it possible to see the difference between 2 commits using gitk?
0
votes
2answers
81 views

Git: cannot see commit on git visual log

I have been learning git by playing with its commands and reading stuff. Here is what I can see, I am expecting a graph similar to what I did on the right. This is confusing, How should the tree ...
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 ...
3
votes
1answer
118 views

git diff does not create temp files

I am experiencing something a bit weird when using git. I am using git on my Windows 7 machine. I wanted to review some code changes, so I fired up gitk to check what was in the commit I wanted to ...
4
votes
2answers
322 views

gitk without X11 [closed]

It has been noted here that Tcl/Tk, and in turn gitk now require X11 under Cygwin. Having run it before and after this change it seems like extreme overkill. I use gitk very lightly, mostly sticking ...
0
votes
1answer
144 views

Where are tag messages in Sourcetree

Where can I access the corresponding message of git tags in Sourcetree. The context menu of a tag seems not to offer such an option.
1
vote
1answer
66 views

gitk: show branch name on hover

Could you tell how to make gitk tool show the branch name on hover or suggest the tool which is able to do so? gitk shows branches tangle where the branches are nameless, and I have to guess which is ...
1
vote
1answer
715 views

gitk cannot find a GIT repository

When I run gitk, a Tk window pops-up saying that "It cannot find a GIT repository here". What am I missing? These are the steps I followed. Forgive me if I missed something stupid. [~/TEMP]$ ls ...
0
votes
1answer
42 views

msysgit - how do I use gitk to search for string in commit ignoring case

I'm sure this question seems really simple. I have a git repository and I am reviewing it in gitk. There is an option to: Find Next prev commit adding/removing string: some string IgnCase All ...
0
votes
0answers
43 views

gitk option to show merge parent edges in the correct order?

git log --graph always draws the edge between a merge commit and its second parent to the right of the edge between its first parent. gitk draws edges in whatever order it thinks will result in the ...
2
votes
1answer
351 views

Git for windows launch gitk context menu with gitk-all

I have Git for Windows installed. When I right click on a project and select Git History I get the Gitk window, but every time I do so I need to set the view to see all branches. Even when I edit the ...
1
vote
2answers
261 views

How do I do the reverse of gitk's “Write commit to file”?

I have written a commit to a file from gitk by right-clicking the commit and selecting "Write commit to file". How do I apply the commit from this file? I can do git apply, git add and git commit ...
3
votes
3answers
174 views

How to make gitk show only local branches?

How to make gitk show only local branches? Or even better - can I hide remote branches that do not have corresponding local branches?
4
votes
4answers
207 views

Git: how can git/linux maintainers maintain so many branches

Personally, if I look at the git or the linux repo with gitk, I am totally overwhelmed by the huge amount of merges/branched. I have absolutely no clue what is going on. I assumed that in general ...
1
vote
1answer
301 views

Why is gitk not showing my local branch?

I'm learning about git and is using gitk to visualize my history and branches. I tried gitk on a locally initialized repo, and it is able to show both branches that I made properly. However, when I ...
0
votes
1answer
211 views

Browse old revisions of a git Repository

In SVN/TortoiseSVN, there was the GUI 'Repository Browser', which allowed to browse a previous 'state' of a repository. For example, I could go to log, pick an old revision, right-click on it, choose ...
2
votes
2answers
125 views

How to print the output of GitK

I am using git v 1.7.4.msysgit.0 on windows. I want to print the output of gitK(i mean physically on a paper) I cant find a print menu there, google doesn't help here too.
11
votes
6answers
5k views

Cygwin gitk issue

I have recently installed all of the X11 packages in the cygwin setup and now have is massive annoying error with not being able to see gitk. Everything was working perfectly well until I installed ...
3
votes
1answer
240 views

Customize gitk for each repository

Gitk is a neat tool, but it doesn't show any visual clue as for which repository you are actually in. When I open multiple gitk windows, I always have to stop and think which one goes with each repo. ...
1
vote
2answers
176 views

How can I get/list/see all the descendants of a commit with git (or gitk)?

If you use gitk --all, you can see all the commits of your repo, from all branches. I want something like that except only the descendants of a given commit.
2
votes
1answer
275 views

Gitk: Setting “Ignore space change” option to be true by default

Is this possible in any way? I have tried git config --global alias.diff 'diff -b -w' but unfortunately that was not the solution.
2
votes
1answer
479 views

git: Is there a command line option for “Sort by date”?

I'm trying to find a command line option for gitk that has the same effect of "Strictly sort by date" in the "View / Edit view..." window. In fact, I'm interested in all the command line options ...
0
votes
1answer
57 views

Tracking everything locally but making only .c and .h changes available on github

I'm going to start tracking a project I'm working on using TortoiseGit. I have a lot of .c and .h files, and then I also have .exe, .obj, .pdb, .ilk, suo, etc. I would like to create a snapshot of ...
1
vote
1answer
129 views

definition of gitk's “Mark Branch Sides” option

In gitk, there is an option in the "Edit View" (F4) window called "Mark branch sides". It seems to correspond to the --left-right option: +set known_view_options { + {perm b . {} ...
3
votes
1answer
312 views

Using gitk on msysgit

I'm trying to use the gitk on mysysgit. I'm not using Cygwin or MinGW to run mysysgit, just a straight up DOS command prompt on Windows. The gitk file is in the bin/ folder, but it's not an ...
3
votes
1answer
960 views

Error: fatal loose object ### (stored in .git/objects/… is corrupt)

I just fired up gitk as usual but this time I received a fatal error message: fatal: loose object 58008283f6ad152ac44a1b6da961795ababe5b93 (stored in ...
3
votes
1answer
514 views

What does “Mark this commit” mean in gitk?

When using gitk, a commit can be selected in the log pane, and a right click context menu offers "Mark this commit". What does that do?
10
votes
1answer
820 views

gitk equivalent of git log --follow <full path to file>

So I have a file called one.txt that I have been modifying over the years on master branch. gitk one.txt will show the entire history of that one particular file. However after I changed one.txt => ...
3
votes
2answers
2k views

What are some Alternatives to Gitk that can be used in Windows Powershell?

I'm using windows powershell to manage git, but am limited in that it can't seem to run the Gitk command. (At least by default) Are there any other tools I can use from PS or is there a way I can ...
2
votes
1answer
246 views

What does this disconnected arrow mean on gitk?

What's the meaning of the blue disconnected arrow? Note, it happened after I added a remote head and did git fetch. ...
0
votes
1answer
305 views

Can gitk show all commits EXCEPT those by a given author?

I want to use gitk to view all commits except those by a given author. Something like the following: gitk --author=!joe Is this possible?
6
votes
6answers
5k views

Git: Compare All Local Commits to Remote Repo Version

I'm somewhat new to Git and what I'm trying to do seems like it should be possible. Basically I've been working off of clone of a repo and have made quite a few local commits. Is there a way to see ...
3
votes
1answer
527 views

Why does gitk have no copy/paste menu item under Edit?

It has been shown in this forum that gitk works with the native OS keys to copy/paste for example into the SHA1 ID line: see unable to copy and paste in gitk - macosx and How to copy text in gitk ...
1
vote
1answer
162 views

unable to copy and paste in gitk - macosx

does anyone know how to copy and paste in gitk with macosx? Its the lower left pane i am unable to select,highlight and copy the text/changes there? Thanks.
22
votes
2answers
6k views

Viewing full version tree in git

I am using the command line version of Git and gitk. I want to see the full version tree, not just the part that is reachable from the currently checked out version. Is it possible?
3
votes
1answer
195 views

gitk: How to tell it “stop, don't load more commits”?

Just gitk or gitk --all can try to fill up all memory on big repository. I know than I can gitk -n 1000 to limit it. Also I can killall git (or even Alt+SysRq+F if haven't stopped it in time) to ...
8
votes
3answers
358 views

Make old git branches invisible without making them unreachable?

Is there a way to make a git branch cease to show up when you type "git branch", but still remain reachable in the history, i.e. via gitk? I have many old branches that I want to get out of my sight, ...

1 2