Re: your mail

2013-05-21 Thread Magnus Bäck
/2009/02/22/integrating-git-with-a-visual-merge-tool/ -- Magnus Bäck ba...@google.com -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: Workflow Help

2013-05-21 Thread Magnus Bäck
compared to cutting the release branch directly from develop? As another poster has pointed out, with merging instead of cherrypicking the standard Git tools will be able to do a better job at helping you track which corrections are made where. [...] -- Magnus Bäck ba...@google.com

Re: Is there a library for monitoring a git repository for any changes?

2013-06-07 Thread Magnus Bäck
wouldn't need to write it myself? Would anyone else be interested if I wrote it myself? 'git ls-remote'? Either run periodically or, if the monitored git is local, triggered via inotify. If you have control over the git perhaps a post-receive hook would be useful too. -- Magnus Bäck ba

Re: Teams of people using signed commits...

2013-06-14 Thread Magnus Bäck
the machine of your machines (assuming a corporate) environment you can set up a template directory for hook distribution. Again, that's only for client hooks that are okay to be circumventable. [...] -- Magnus Bäck ba...@google.com -- To unsubscribe from this list: send the line unsubscribe git

Re: how the commit ID come from in GIT?

2012-11-05 Thread Magnus Bäck
/Git-Internals-Git-Objects That description is quite detailed, and most users don't need to go that deep. -- Magnus Bäck ba...@google.com -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http

Re: Python extension commands in git - request for policy change

2012-11-27 Thread Magnus Bäck
, these are not theoretical problems. I recall at least three cases in the last year or so where Git has seen breakage with Solaris or Mac OS X because of sed or tr incompatibilities, and I don't even read this list that thoroughly. [...] -- Magnus Bäck ba...@google.com -- To unsubscribe from this list

Re: Python extension commands in git - request for policy change

2012-11-28 Thread Magnus Bäck
On Tuesday, November 27, 2012 at 19:10 EST, Felipe Contreras felipe.contre...@gmail.com wrote: On Tue, Nov 27, 2012 at 3:35 PM, Magnus Bäck ba...@google.com wrote: While constant traffic probably overstates the issue, these are not theoretical problems. I recall at least three cases

Re: inotify to minimize stat() calls

2013-02-14 Thread Magnus Bäck
sure the information can be dug up.) Based on a quick look it seems GetFileAttributesEx() is still used for mingw and cygwin Git. -- Magnus Bäck ba...@google.com -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo

Re: building git ; need suggestion

2013-03-15 Thread Magnus Bäck
of the branches to each site. You could e.g. have gitweb-dev.example.com and gitweb-maint.example.com and grant access to those sites accordingly. -- Magnus Bäck ba...@google.com -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More

Re: git branch based hook desigh

2013-03-20 Thread Magnus Bäck
depending on the ref that's about to be updated, just put a conditional in the hook. You get the name(s) of ref(s) to be updated on stdin. -- Magnus Bäck ba...@google.com -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More

Re: merge help

2013-03-27 Thread Magnus Bäck
with Git, e.g. kdiff3 and meld. See git-difftool(1) and git-mergetool(1). [...] -- Magnus Bäck ba...@google.com -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: which files will have conflicts between two branches?

2013-03-28 Thread Magnus Bäck
git ls-files -u instead. -- Magnus Bäck ba...@google.com -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: Selectively commit/publish files to GIT

2013-11-08 Thread Magnus Bäck
it easy to verify that a file has been eradicated. git log --all -- path/to/big-honking-file.zip -- Magnus Bäck ba...@google.com -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org