Search Results

12
votes

What GUIs exist for Git on Windows

The git wiki has a comprehensive list of frontends and interfaces. …
0
votes

How do I reset/revert a specific file to a specific revision using Git?

I have to plug EasyGit here, which is a wrapper to make git more approachable to novices without confusing seasoned users. One of the t …
8
votes

Git: Which commit has this blob?

Here it is as a shell script: #!/bin/sh obj_name="$1" shift git log "$@" --pretty=format:'%T %h %s' \ | while read tree commit subject ; do if git ls-tree -r $tree | grep -q "$o …
4
votes

Are there any good Issue Tracking systems that can track git commits/branches

Check these out: Ditz dbug Both of them …
6
votes

What is the Difference Between Mercurial and Git?

Git is a platform, Mercurial is “just” an application. Git is a versioned filesystem platform that happens to ship with a DVCS app in the box, but as normal for platform apps, it is more complex an …
3
votes

Pushing an existing Git repository to Github only sends about half the commits?

A very simple approach for fixing this sort of problem is to just delete the master branch and recreate it. After all, branches in git are merely names for commits and the master …