I'm looking for a nice, Mac OS X-like, client for Git. As an example, I use Versions for Subversion and it's exactly what I'd like to purchase for Git access. Suggestions?
Versions link
When I type 'git diff', I want to view the output with my visual diff tool of choice (SourceGear diffmerge on Windows). How do I configure git to do this?
I recently learned that I can get hg log to print the history in reverse order with:
hg log -r :
So of course I tried:
git log -r :
Well, it didn't work. So what is the command to do the same thing in git?
When you try to build git on Red Hat Enterprise Linux 3, you get an error:
In file included from /usr/include/openssl/ssl.h:179,
from git-compat-util.h:139,
from builtin.h:4,
from fast-import.c:147:
/usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory
At work, we are using ASP.net 2.0 and VSS. VSS is a beast, we are continually having issues with people checking out files and there is no branching - makes it crazy. I know SVN/GIT is mainly used by open source developers, are there any downsides to ASP.NET developers using it? I have been pushing for SVN internally, but am thinking GIT might also…
Is there a way to , when doing
git commit
to not display the untracked files in my $EDITOR?
I know how to do so in the shell, using git status -u no, but I'd like do it in $EDITOR as well
EDIT: I should have stated, I do not want to ignore these files forever, just not see them on certain occasions...
On Windows, can we put different folders in 1 Git or Mercurial (hg) repository?
Such as putting
c:\ror
c:\software projects\ruby
c:\js test
all in 1 Git or Mercurial repository called code ?
I'm using Phing to do post build tasks in Hudson.
I want to generate changelog containing all commits since last successful Hudson build. But looks like neither Hudson nor Git plugin for Hudson does not provide %last_build_time% variable.
This would be satisfying solution, (but how to get the time?):
git log --pretty="%s"…
Mercurial has a way of getting to the root directory (that contains .hg) via
hg root
Is there something equivalent in git to get to the directory that contains the .git directory?
We are trying to set up a Hudson server and share it between different projects. Hudson authenticates users against our Windows domain AD, and the project based security matrix makes it easy to manage who can access which projects.
Remaining issue is, that most of the projects use git over ssh. Is there a way to make shared…
I'm currently writing an app in C# using using Visual Studio. As such, VS2010 created a Solution directory with my project directories inside.
So my Hierarchy is like this:
Solution
.git
project1
project2
What I'd like to do is make it like this:
Solution
Project 1
.git
Project 2
As of right now…
Assume that somewhere in the web exists public git repository. I want to clone it but firstly i need to be sure what is size of it (how much objects & kbytes like in git count-objects)
Is there a way to do it?
Is there any easy way to calculate the number of lines changed between two commits in git? I know I can do a git diff, and count the lines, but this seems tedious. I'd also like to know how I can do this, including only my own commits in the linecounts.
Unfortunately, there was no monthly meetup during May. Which means that it was even more important and interesting to go forward with a great topic for this month. Earlier this year I already spoke to Nayar Joolfoo about doing a presentation on version control systems (VCS), and he gladly agreed since then. It was just…
I'm trying to clone my personal fork on github using the git+ssh protocol with TortoiseHg. It's giving me a rather strange error. Here is the command
hg clone git+ssh//git@github.com:myusername/thefork.git
This is after I have installed the hg-git module and it works just fine to clone using the git:// syntax. But I…
Instructions from ruhoh.com state to setup a repository USERNAME.ruhoh.com, which has been done. https://github.com/NredYssuts/nredyssuts.ruhoh.com also asks to add a web hook, which has also been done.
Then it gives the following instructions to execute:
$ git clone git://github.com/ruhoh/blog.git…
I find the output of hg status too verbose for untracked directories. Suppose I have an empty repository that's managed by both git and hg. So there would be two directories, .git and .hg.
The output of git status is:
# Untracked files:
# (use "git add <file>..." to include in what will be…
I find the output of hg status too verbose for untracked directories. Suppose I have an empty repository that's managed by both git and hg. So there would be two directories, .git and .hg.
The output of git status is:
# Untracked files:
# (use "git add <file>..." to include in what will be…
Answering a recent question, and before that, trying to see if a patch which is fundamental for my machine had been included in a kernel release, I have found the following problem:
How can I match the kernel version I have for my kernel, which is
[:~] % uname -a
Linux samsung-romano…
Lets say I'm doing a rebase B of a branch onto master and there's a conflict. git opens up the default merge tool with 3 files as input : file.LOCAL, file.BASE, file.REMOTE (they're named a little differently, but LOCAL, BASE and REMOTE are in the file names and is how they are…
When you run git branch -r why the blazes does it list origin/HEAD? For example, there's a remote repo on GitHub, say, with two branches: master and awesome-feature. If I do git clone to grab it and then go into my new directory and list the branches, I see this:
$ git branch…
I have a file with one line in it.
I create a branch and add a second line to the same file. Save and commit to the branch.
I switch back to the master. And add a different, second line to the file. Save and commit to the master.
So there's now 3 unique lines in total.
If I…
One team in company I work for has the following problem. They develop an application, which will have different builds (e.g. different design depending on customer). so they have some code shared between builds, and some specific to build. E.g. first build has (example is…
My question is: can i have 2 repositories without losing my original repository.
Lets say i want the the eclair source repository
repo init -u
git://android.git.kernel.org/platform/manifest.git
-b eclair
(already synced and working)
and i would also like to…