Re: [git-users] Git rebase for cleanup, after pushing

2013-05-31 Thread Paul Smith
On Thu, 2013-05-30 at 22:29 -0700, PJ Weisberg wrote: On May 30, 2013 6:32 PM, Paul Smith p...@mad-scientist.net However, I've already pushed my branch to master. I know rebasing stuff you've already pushed is considered a no-no in general, but I can't avoid it. Does anyone have

[git-users] Redirection of git standard out and error.

2013-05-31 Thread Jason Smith
Hi All, Currently I am looking at a way to redirect standard output and error from git. What I am finding is that when I call something like git fetch g...@github.com:username/project.git there is a challenge for the ssh passphrase waiting on the console. When I do this via a CreateProcess

[git-users] Re: Unable to install Git after building _everything_

2013-05-31 Thread mayur nagekar
Hello all, I was trying to install git-1.8.2 on Mac from source. I already had 1.7.x pre-installed. So I had the following similar issue when I was trying to compile and install git-1.8.2. * /bin/sh: line 1: docbook2x-texi: command not found * I installed the docbook2x-texi

Re: [git-users] Highlevel (but simple to implement) commands provided by default for git

2013-05-31 Thread Thomas Ferris Nicolaisen
I haven't tried it myself, but there is a thing called easy-git: http://people.gnome.org/~newren/eg/ -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from this group and stop receiving emails from it, send an email to

[git-users] Re: Error code -6

2013-05-31 Thread Thomas Ferris Nicolaisen
On Thursday, May 30, 2013 11:54:58 PM UTC+2, Dallin Lauritzen wrote: I've created a Django website to manage my company's various iOS and Android apps. It uses a python Git module (GitPythonhttp://gitorious.org/git-python) to manage files, but fairly often I will get an error that a

Re: [git-users] Error code -6

2013-05-31 Thread Konstantin Khomoutov
On Thu, 30 May 2013 14:54:58 -0700 (PDT) Dallin Lauritzen dallin.laurit...@gmail.com wrote: [...] File /Library/Python/2.7/site-packages/git/cmd.py, line 377, in execute raise GitCommandError(command, status, stderr_value) GitCommandError: 'git pull' returned exit status -6: [...] If anyone

Re: [git-users] Git rebase for cleanup, after pushing

2013-05-31 Thread Ryan Hodson
Then if I merge my branch into the master branch, all that becomes part of the mainline of the code. Do you *need* to merge into the master branch to build your code? If possible, a much better way to do this would be to push the work-in-progress branch to the remote, build and test it on the

Re: [git-users] Git rebase for cleanup, after pushing

2013-05-31 Thread Yawar Amin
On 2013-05-31, at 2:32, Paul Smith p...@mad-scientist.net wrote: [...] I DO want to do the cleanup before merging to master. If you mean do the cleanup before pushing to the git repo, I can't do it all because it's not until after I push that I can detect build issues on platforms I don't