User Jakub Narębski - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:01:38Z http://stackoverflow.com/feeds/user/46058 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1803748/how-to-build-a-web-app-with-git-front-end-utils/1804429#1804429 1 Answer by Jakub Narębski for How to build a web App with Git front end utils ? Jakub Narębski 2009-11-26T15:47:12Z 2009-11-26T15:47:12Z <p>Take a look at "Web Interface" section of <a href="http://git.or.cz/gitwiki/InterfacesFrontendsAndTools#web-interface" rel="nofollow">InterfacesFrontendsAndTools</a> page on Git wiki, and at <a href="http://git.or.cz/gitwiki/Gitweb" rel="nofollow">Gitweb</a> page, also on Git wiki. </p> <p><hr></p> <p>Below there is (probably incomplete) list of various git web interfaces and integrated git hosting solutions:</p> <p>Pure web interfaces (I guess that most commonly used are <strong>gitweb</strong> and <strong>cgit</strong>):</p> <ul> <li>gitweb (<a href="http://git.kernel.org/?p=git/git.git;a=blob;f=gitweb/README;hb=HEAD" rel="nofollow">README</a>) - in Perl, part of git</li> <li><a href="http://hjemli.net/git/cgit/" rel="nofollow">cgit</a> - in C</li> <li><a href="http://viewgit.sourceforge.net/" rel="nofollow">viewgit</a> - in PHP</li> <li><a href="http://www.xiphux.com/programming/php/gitphp/" rel="nofollow">GitPHP</a> - in PHP</li> <li>git-php: <a href="http://code.google.com/p/git-php/" rel="nofollow">1</a>, <a href="http://people.proekspert.ee/peeter/git/git.php" rel="nofollow">2</a>, <a href="http://github.com/josegonzalez/git-php" rel="nofollow">3</a> - in PHP</li> <li><a href="http://github.com/lenary/ginatra/" rel="nofollow">ginatra</a> - in Ruby, using Sinatra framework</li> <li><a href="http://github.com/broquaint/Gitalist" rel="nofollow">Gitalist</a> and <a href="http://github.com/lestrrat/Gitcat/" rel="nofollow">Gitcat</a> - in Perl, using Catalyst framework</li> <li><a href="http://github.com/sethtrain/django-git/" rel="nofollow">django-git</a> and <a href="http://github.com/stephrdev/django-gitweb" rel="nofollow">django-gitweb</a> - in Python, using Django framework</li> </ul> <p>Git hosting solutions (forges) with built-in web interface:</p> <ul> <li><a href="http://gitorious.org/gitorious/mainline/trees/master" rel="nofollow">Gitorious</a> - in Ruby</li> <li><a href="http://www.indefero.net" rel="nofollow">InDefero</a> - in PHP</li> <li><a href="http://fi.github.com/" rel="nofollow">GitHub:FI</a> - in Ruby, proprietary</li> </ul> http://stackoverflow.com/questions/1800783/compare-local-git-branch-with-remote-branch/1801150#1801150 4 Answer by Jakub Narębski for compare local git branch with remote branch? Jakub Narębski 2009-11-26T01:50:17Z 2009-11-26T01:50:17Z <p><code>git diff &lt;<i>local branch</i>&gt; &lt;<i>remote-tracking branch</i>&gt;</code></p> <p>For example <code>git diff master origin/master</code>, or <code>git diff featureA origin/next</code></p> http://stackoverflow.com/questions/1792838/enable-ident-string-for-git-repos/1796675#1796675 3 Answer by Jakub Narębski for Enable ident string for Git repos Jakub Narębski 2009-11-25T12:39:47Z 2009-11-25T12:39:47Z <p><strong><em>Summary:</em></strong> Recommended way of embedding version info in product is to use <strong>build system</strong> for that; see below for details and alternate approaches.</p> <p><hr></p> <p>In Git (and I think usually also in other VCS systems with atomic commits) there is not such thing like <em>version of a <strong>single file</em></strong>.</p> <p>Git does support on-demand expansion of <code>$Id:$</code> keyword, but:</p> <ol> <li>It is done <strong>on request</strong> only. You have to specify (perhaps using globbing pattern) that a file (or a set of files) has an <code>ident</code> <a href="http://www.kernel.org/pub/software/scm/git/docs/gitattributes.html#%5Ftt%5Fident%5Ftt" rel="nofollow">attribute</a> set (in '.gitattributes' file in tree, or in '.git/info/attributes' for local repository settings).</li> <li>It expands to <strong>SHA-1 of file contents</strong> (or to be more exact to <code>$Id:&lt;sha-1 of blob&gt;$</code>). The reason for this choice is that Git does not touch files that have not changed during branch switching or rewinding; if '$Id:$' expanded to revision info it would require to update <em>every</em> version-controlled file e.g. when switching branches.</li> </ol> <p>Git supports quite wide set of <code>$Format:...$</code> placeholders which can expands to commit info (e.g. <code>$Format:%H$</code> replaced by a commit hash) but:</p> <ol> <li>Expansion is done <strong>only when running <a href="http://www.kernel.org/pub/software/scm/git/docs/git-archive.html" rel="nofollow">git archive</a></strong>, in its output file.</li> <li>It is done <strong>on request</strong>, controlled via <code>export-subst</code> attribute.</li> </ol> <p>The recommended way of embedding version info is to do it via <strong>build system</strong> (in a build stage); see for example Git <a href="http://git.kernel.org/?p=git/git.git;a=blob;f=Makefile;hb=HEAD" rel="nofollow">Makefile</a> and <a href="http://git.kernel.org/?p=git/git.git;a=blob;f=GIT-VERSION-GEN;hb=HEAD" rel="nofollow">GIT-VERSION-GEN</a> script used by Makefile in git web interface for git.git repository.</p> <p>You can however (ab)use clean/smudge filter driver (via <code>filter</code> attribute) to get CVS-like keyword expansion, expanding keywords on checkout, and cleaning them up on entering contents to repository.</p> http://stackoverflow.com/questions/1791854/diffing-between-two-entire-directories-projects/1792477#1792477 1 Answer by Jakub Narębski for Diffing between two entire directories/projects? Jakub Narębski 2009-11-24T19:47:27Z 2009-11-24T19:47:27Z <p>From <a href="http://www.kernel.org/pub/software/scm/git/docs/git-diff.html" rel="nofollow" title="git-diff - Show changes between commits, commit and working tree, etc"><code>git diff</code> manpage</a>:</p> <blockquote> <p><code>git diff [--options] [--] [&lt;path&gt;...]</code></p> <blockquote> <p>[...]<br /> If exactly two paths are given, and at least one is untracked, compare the two files / directories. This behavior can be forced by <code>--no-index</code>.</p> </blockquote> </blockquote> <p><hr></p> <p>If you want to compare two versions (e.g. two tagged releases, or two branches) in two different repositories, you can use trick described in <a href="http://git.or.cz/gitwiki/GitTips" rel="nofollow">GitTips</a> page on Git Wiki, under "How to compare two local repositories". </p> <p>Assuming that you are inside one repository, and second repository is in <code>/path/to/repo</code>, so its GIT_DIR is <code>/path/to/repo/.git</code> if it is non-bare repository, you can something like the following:</p> <pre><code>$ GIT_ALTERNATE_OBJECT_DIRECTORIES=/path/to/repo/.git/objects \ git diff $(git --git-dir=/path/to/repo/.git rev-parse --verify A) B </code></pre> <p>where A and B are revisions you want to compare. Of course you can also specify path limiter in above expression.</p> <p><sup><em>Explanation:</em> <code>GIT_ALTERNATE_OBJECT_REPOSITORIES</code> variable can be used to make git commands concatenate object database of the two repositories. <code>git --git-dir=... rev-parse ...</code> is used to turn name (extended SHA-1 expression) in repository given as parameter to <code>git-dir</code> option into unique SHA-1 identifier. The <code>$( ... )</code> construct puts result of calling given command in command line. <code>git diff</code> is used to compare two revisions (where one is from alternate object repository).</sup></p> <p>Alternate solution would be to simply <em>import</em> other repository into given repository, using <code>git remote add</code> (and <code>git fetch</code>). Then you would have everything locally, and would be able to do comparision inside single repository.</p> http://stackoverflow.com/questions/1783405/git-checkout-remote-branch/1787014#1787014 0 Answer by Jakub Narębski for git checkout remote branch Jakub Narębski 2009-11-24T00:17:17Z 2009-11-24T00:17:17Z <p><strong><em>Sidenote:</em></strong> with modern Git (which means probably not yet released version) you would be able to use just</p> <pre><code>git checkout test </code></pre> <p>(note that it is 'test' not 'origin/test') to perform magical DWIM-mery and create local branch 'test' for you, for which upstream would be remote-tracking branch 'origin/test'.</p> <p><hr></p> <p>The <code>* (no branch)</code> in <code>git branch</code> output means that you are on unnamed branch, in so called "detached HEAD" state (HEAD points directly to commit, and is not symbolic reference to some local branch). If you made some commits on this unnamed branch, you can always create local branch off curent commit:</p> <pre><code>git checkout -b test HEAD </code></pre> http://stackoverflow.com/questions/1783876/how-to-git-merge-a-branch-that-only-contains-a-subfolder-of-trunk/1786950#1786950 1 Answer by Jakub Narębski for How to Git merge a branch that only contains a subfolder of trunk? Jakub Narębski 2009-11-24T00:02:27Z 2009-11-24T00:02:27Z <p>It looks like you need to use <strong>subtree</strong> merge strategy.</p> <p>For <strong><em>first merge</em></strong>, take a look at the following references:</p> <ul> <li><a href="http://blog.nuclearsquid.com/writings/subtree-merging-and-you" rel="nofollow">Subtree merging and you</a> by Markus Prinz</li> <li><a href="http://www.kernel.org/pub/software/scm/git/docs/howto/using-merge-subtree.html" rel="nofollow">How to use the subtree merge strategy</a> in Git documentation (should be present as <code>howto/using-merge-subtree.html</code> in Git docs, in <code>/usr/share/doc/git-&lt;version&gt;</code> on Linux).</li> </ul> <p>Or use <strong><a href="http://github.com/apenwarr/git-subtree" rel="nofollow">git-subtree</a></strong> tool by Avery Pennarun, mentioned on <a href="http://git.or.cz/gitwiki/InterfacesFrontendsAndTools#git-subtree" rel="nofollow">InterfacesFrontendsAndTools</a> page on Git wiki.</p> <p>For <strong><em>subsequent merges</em></strong> it should be enough to specify subtree merge strategy:</p> <pre><code>$ git pull -s subtree &lt;remote&gt; </code></pre> <p>or</p> <pre><code>$ git merge -s subtree &lt;branch&gt; </code></pre> http://stackoverflow.com/questions/1786027/how-to-view-file-history-in-git/1786869#1786869 1 Answer by Jakub Narębski for how to view file history in GIT? Jakub Narębski 2009-11-23T23:46:30Z 2009-11-23T23:46:30Z <p>All Git history browsers, including <code>git log</code> (and 'git log --graph'), gitk (in Tcl/Tk, part of Git), QGit (in Qt), tig (text mode interface to git, using ncurses), Giggle (in GTK+), TortoiseGit and git-cheetah support path limiting (e.g. <code>gitk path/to/file</code>).</p> http://stackoverflow.com/questions/1786692/bulk-delete-in-git/1786850#1786850 6 Answer by Jakub Narębski for bulk delete in GIT? Jakub Narębski 2009-11-23T23:43:01Z 2009-11-23T23:43:01Z <p>In addition to <a href="http://stackoverflow.com/questions/1786692/bulk-delete-in-git/1786698#1786698">Charles Bailey answer</a> about <code>git add -u</code> (or <code>git add -A</code> which combines <code>git add .</code> with <code>git add -u</code>) and automation using <code>xargs</code>, I'd like to point out that <strong><code>git commit -a</code></strong> would <em>pick file deletions automatically.</em></p> http://stackoverflow.com/questions/1777476/developing-at-home-and-office-would-git-be-easier-than-svn-using-xcopy/1778416#1778416 4 Answer by Jakub Narębski for developing at home and office, would GIT be easier than SVN using xcopy? Jakub Narębski 2009-11-22T10:56:03Z 2009-11-22T10:56:03Z <p>With Git, in addition to having bare git repository on USB for transfer (as in <a href="http://stackoverflow.com/questions/1777476/developing-at-home-and-office-would-git-be-easier-than-svn-using-xcopy/1777869#1777869">Neall</a> and <a href="http://stackoverflow.com/questions/1777476/developing-at-home-and-office-would-git-be-easier-than-svn-using-xcopy/1777481#1777481">dj2</a> answers), you can also use "<strong><a href="http://www.kernel.org/pub/software/scm/git/docs/git-bundle.html" rel="nofollow" title="git-bundle(1) Manual Page - Move objects and refs by archive">git bundle</a></strong>" command for off-line transfer.</p> http://stackoverflow.com/questions/1774152/git-submodule-fatal-cannot-describe/1774323#1774323 1 Answer by Jakub Narębski for GIT submodule fatal: cannot describe Jakub Narębski 2009-11-21T02:32:29Z 2009-11-21T02:32:29Z <p>This is certainly bug in Git (please send description of how it does occur, and the git version to git mailing list), but you can avoid this <code>git describe</code> error by creating <strong>anoontated tag</strong> pointing somwhere to the commit before adding submodule. For example to som released version.</p> http://stackoverflow.com/questions/1767999/git-and-removing-files/1769132#1769132 2 Answer by Jakub Narębski for git and removing files Jakub Narębski 2009-11-20T08:49:47Z 2009-11-20T08:49:47Z <p><code>git commit -a</code> would automatically pick up file deletions.</p> http://stackoverflow.com/questions/1765218/how-to-manage-backups-and-monitor-git-with-a-central-repository/1766866#1766866 2 Answer by Jakub Narębski for How to manage backups and monitor Git with a central repository? Jakub Narębski 2009-11-19T21:58:55Z 2009-11-19T21:58:55Z <ul> <li><p>Backup individual repositories</p></li> <li><p>Create a "backup" repository, to which other push finished work into <code>refs/remotes/&lt;username&gt;/</code> namespace:</p> <pre><code>[remote "backup"] url = user@backup.example.com/srv/git/backup.git push = +refs/heads/*:refs/remotes/user/* </code></pre></li> <li><p>Use <a href="http://code.google.com/p/gerrit/" rel="nofollow">Gerrit</a>: see <a href="http://lwn.net/Articles/359489/" rel="nofollow">"Gerrit: Google-style code review meets git"</a> article at LWN.net</p></li> </ul> http://stackoverflow.com/questions/1756445/how-would-i-expand-the-scope-of-an-existing-git-repository-to-a-parent-director/1758553#1758553 1 Answer by Jakub Narębski for How would I expand the 'scope' of an existing git repository to a parent directory? Jakub Narębski 2009-11-18T19:45:43Z 2009-11-18T19:45:43Z <p>Try this, starting from to dir of the git repository:</p> <pre><code>$ mkdir b $ git mv * b/ $ git commit # describe that contents have moved $ cd .. $ mv b/* . $ rmdir b </code></pre> http://stackoverflow.com/questions/949314/how-to-retrieve-the-hash-for-the-current-commit-in-git/949391#949391 5 Answer by Jakub Narębski for How to retrieve the hash for the current commit in Git? Jakub Narębski 2009-06-04T09:05:57Z 2009-11-17T10:14:34Z <p>To turn arbitrary extended object reference into SHA-1, use simply <strong><a href="http://www.kernel.org/pub/software/scm/git/docs/git-rev-parse.html" rel="nofollow" title="git-rev-parse - Pick out and massage parameters">git-rev-parse</a></strong>, for example</p> <pre><code>git rev-parse HEAD </code></pre> <p>or</p> <pre><code>git rev-parse --verify HEAD </code></pre> <p><strong><em>Sidenote:</em></strong> If you want to turn <em>references</em> (<strong>branches</strong> and <strong>tags</strong>) into SHA-1, there is git-show-ref and git-for-each-ref.</p> http://stackoverflow.com/questions/1737306/how-to-diff-files-directly-from-the-linux-kernel-git-repository/1737606#1737606 4 Answer by Jakub Narębski for How to Diff Files Directly from the Linux Kernel GIT Repository? Jakub Narębski 2009-11-15T14:09:27Z 2009-11-16T23:25:57Z <p><a href="http://git.or.cz/gitwiki/Gitweb" rel="nofollow">Gitweb</a> at kernel.org allows to view diff between arbitrary commits, see for example the following link for diff between v2.6.32-rc6 and v2.6.32-rc7:<br /> <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;hp=refs/tags/v2.6.32-rc6;h=refs/tags/v2.6.32-rc7" rel="nofollow">http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;hp=refs/tags/v2.6.32-rc6;h=refs/tags/v2.6.32-rc7</a> (use <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=patch;h=refs/tags/v2.6.32-rc7;hp=refs/tags/v2.6.32-rc6" rel="nofollow">patch</a> link to get plain patch that you can apply), and between arbitrary versions of file / between arbitrary versions of arbitrary files, e.g.: <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blobdiff;f=MAINTAINERS;h=81d68d5b7eea0c172c6fce0cd5bd4abcd32ac75a;hp=8ea20fc88d09ec01cef00ac6563c822187fff77d;hb=refs/tags/v2.6.32-rc7;hpb=a2681a75426552c185b7c594116cc44ef8302aba" rel="nofollow">diff to current</a> link in <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=history;f=MAINTAINERS;h=81d68d5b7eea0c172c6fce0cd5bd4abcd32ac75a;hb=refs/tags/v2.6.32-rc7" rel="nofollow">history</a> view.</p> <p>Unfortunately neither official gitweb version (distributed together with Git itself), nor the fork used by kernel.org generates links between arbitrary commits, so you would have to handcraft (create by hand) URLs to give to gitweb. In the case of <code>commitdiff</code> view (action) the iparameters you need are <code>'h'</code> (hash) and <code>'hp'</code> (hash parent); in the case of <code>blobdiff</code> view they are <code>'hb</code>' (hash base) and <code>'hpb'</code> (hash parent base), and also <code>'f'</code> (filename) and <code>'fp</code>' (file parent).</p> <h3>Templates</h3> <ul> <li><p>For diff between two arbitrary commits (equivalent of <code>git diff A B</code> from command line) <code>http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;hp=<b><i>A</i></b>;h=<b><i>B</i></b></code></p></li> <li><p>For diff between two versions of the same file (equivalent of <code>git diff A B &lt;filename&gt;</code>). <code>http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blobdiff;f=<i>&lt;filename&gt;</i>;hpb=<b><i>A</i></b>;hp=<b><i>B</i></b></code></p></li> </ul> <p>Note that core gitweb (but not the fork used by kernel.org, currently) you can use path_info version, e.g.:<br /> <code>http://repo.or.cz/w/git.git/blobdiff/<strong>A</strong>..<strong>B</strong>:/<em>&lt;filename&gt;</em></code></p> http://stackoverflow.com/questions/1722807/git-convert-git-urls-to-http-urls/1723531#1723531 1 Answer by Jakub Narębski for git: convert "git" urls to "http" urls Jakub Narębski 2009-11-12T16:30:20Z 2009-11-12T16:30:20Z <p>I don't know how this <a href="http://android.git.kernel.org/?p=tools/repo.git" rel="nofollow">repo</a> tool uses Git (and if you can configure 'repo' to use http protocol), but you can try to trick it using <code>url.&lt;base&gt;.insteadOf</code> configuration variable (see <a href="http://www.kernel.org/pub/software/scm/git/docs/git-config.html" rel="nofollow" title="git-config(1) Manual Page - Get and set repository or global options">git-config</a> and <a href="http://www.kernel.org/pub/software/scm/git/docs/git-fetch.html" rel="nofollow" title="git-fetch(1) Manual Page - Download objects and refs from another repository">git-fetch</a> manpages).</p> <p>Have you tried to use <code>core.gitProxy</code> to pass through firewall, if it is the problme with using git protocol?</p> http://stackoverflow.com/questions/1720057/git-config-style-configuration-system/1721044#1721044 2 Answer by Jakub Narębski for git-config style configuration system Jakub Narębski 2009-11-12T09:35:53Z 2009-11-12T09:35:53Z <p>In addition to <a href="http://stackoverflow.com/questions/1720057/git-config-style-configuration-system/1720457#1720457">Chris Johnsen answer</a>: there is <a href="http://p3rl.org/Config%3A%3AGitLike" rel="nofollow">Config::GitLike</a> Perl module on CPAN.<br /> <sub><em>It is not part of Git project</em></sub></p> http://stackoverflow.com/questions/1718454/how-do-i-fork-multiple-projects-into-one-repository-with-git/1718767#1718767 2 Answer by Jakub Narębski for How do I fork multiple projects into one repository with git? Jakub Narębski 2009-11-11T23:14:14Z 2009-11-11T23:14:14Z <p>You can always use "<code>git remote add &lt;name&gt; &lt;url&gt;</code>" to add more repositories as source.</p> http://stackoverflow.com/questions/1714074/tips-on-upgrading-cvs-to-git-hg/1715227#1715227 2 Answer by Jakub Narębski for Tips on upgrading CVS to git/hg? Jakub Narębski 2009-11-11T13:40:24Z 2009-11-11T13:40:24Z <p>Perhaps this StackOverflow question (and its answers) would be of help:</p> <ul> <li><a href="http://stackoverflow.com/questions/802573/difference-between-git-and-cvs">Difference between GIT and CVS</a></li> </ul> http://stackoverflow.com/questions/1710894/using-git-show-all-commits-that-are-in-one-branch-but-not-the-others/1711540#1711540 3 Answer by Jakub Narębski for Using Git, show all commits that are in one branch, but not the other(s) Jakub Narębski 2009-11-10T22:00:19Z 2009-11-10T22:00:19Z <p>If it is <strong>one (single)</strong> branch that you need to check, for example if you want that branch 'B' is fully merged into branch 'A', you can simply do the following:</p> <pre><code>$ git checkout A $ git branch -d B </code></pre> <p><code>git branch -d &lt;branchname&gt;</code> has the safety that "The branch must be fully merged in HEAD."</p> http://stackoverflow.com/questions/1705224/github-how-to-include-files-from-master-in-new-git-branch-gh-pages/1708339#1708339 0 Answer by Jakub Narębski for github how to include files from master in new git branch gh-pages Jakub Narębski 2009-11-10T14:23:45Z 2009-11-10T14:23:45Z <p>You want branch 'hg_pages' <em>in your GitHub repository</em> to be the same as 'master' branch. The simplest solution would be to configure git to push branch 'master' to 'hg_pages' automatically.</p> <p>Assuming that your GitHub repository you push into is configured as 'origin' remote, you can somply do:</p> <pre><code>$ git config --add remote.origin.push +refs/heads/master:refs/heads/gh_pages </code></pre> <p>Or if you prefer you can simply edit <code>.git/config</code> file directly.</p> <p>Then when you do <code>git push</code> or <code>git push origin</code> you would push 'master' branch in your repository into 'gh_pages' branch into repository on GitHub.</p> <p>See <a href="http://www.kernel.org/pub/software/scm/git/docs/git-push.html" rel="nofollow">git-push manpage</a> for documentation and description of refspec format.</p> http://stackoverflow.com/questions/1704907/how-can-i-get-my-c-code-to-automatically-print-out-its-git-version-hash/1706680#1706680 2 Answer by Jakub Narębski for How can I get my C code to automatically print out its Git version hash? Jakub Narębski 2009-11-10T09:37:07Z 2009-11-10T09:37:07Z <p>There are two things that you can do:</p> <ul> <li><p>You can make <strong>Git</strong> to embed some version information in the file for you.</p> <p>The simpler way is to use <code>ident</code> <a href="http://www.kernel.org/pub/software/scm/git/docs/gitattributes.html" rel="nofollow" title="gitattributes(5) Manual Page - defining attributes per path">attribute</a>, which means putting (for example)</p> <pre><code>*.yaml ident </code></pre> <p>in <code>.gitattributes</code> file, and <code>$Id$</code> in the appropriate place. It would be automatically expanded to SHA-1 identifier <strong><em>of the contents of the file</em></strong> (blob id): this is NOT file version, or the last commit.</p> <p>Git does support $Id$ keyword in this way to avoid touching files which were not changed during branch switching, rewinding branch etc. If you really want Git to put commit (version) identifier or description in the file, you can (ab)use <code>filter</code> attribute, using clean/ smudge filter to expand some keyword (e.g. $Revision$) on checkout, and clean it up for commit.</p></li> <li><p>You can make <strong>build process</strong> to do that for you, like Linux kernel or Git itself does.</p> <p>Take a look at <a href="http://git.kernel.org/?p=git/git.git;a=blob;f=GIT-VERSION-GEN;hb=HEAD" rel="nofollow" title="git.kernel.org - git/git.git/blob - GIT-VERSION-GEN">GIT-VERSION-GEN</a> script and its use in Git <a href="http://git.kernel.org/?p=git/git.git;a=blob;f=GIT-VERSION-GEN;hb=HEAD" rel="nofollow" title="git.kernel.org - git/git.git/blob - Makefile">Makefile</a>, or for example how this Makefile embeds version information during generation / configuration of <code>gitweb/gitweb.cgi</code> file.</p> <p>GIT-VERSION-GEN uses <strong><em>git describe</em></strong> to generate version description. It needs to work better that you tag (using signed / annotated tags) releases / milestones of your project.</p></li> </ul> http://stackoverflow.com/questions/1704565/why-kiln-is-based-on-mercurial-and-not-other-dvcs 6 Why Kiln is based on Mercurial, and not other (D)VCS Jakub Narębski 2009-11-09T23:05:38Z 2009-11-10T00:29:07Z <p>What were the reason for chosing Mercurial as a basis of FogCreek <a href="http://fogcreek.com/kiln/" rel="nofollow"><strong>Kiln</strong></a>, a source control management system with tightly integrated code review, and FogBugz integration?</p> <p>Why Mercurial, and not other (distributed) version control system, like Bazaar, Git or Monotone, or creating own version control system like <a href="http://www.fossil-scm.org/" rel="nofollow">Fossil</a> (distributed software configuration management, including bug tracking and wiki) did?</p> <p>What were features that make FogCreek choose Mercurial as Kiln engine?</p> http://stackoverflow.com/questions/1697043/mailing-list-to-review-git-commits/1697630#1697630 1 Answer by Jakub Narębski for Mailing list to review Git commits Jakub Narębski 2009-11-08T19:29:57Z 2009-11-08T19:29:57Z <p>See <a href="http://git.kernel.org/?p=git/git.git;hb=HEAD;a=blob;f=contrib/hooks/post-receive-email" rel="nofollow"><code>contrib/hooks/post-receive-email</code></a> example hook in Git sources <em>(link is to gitweb)</em></p> http://stackoverflow.com/questions/1694608/making-cloned-repository-in-git-the-master/1694832#1694832 1 Answer by Jakub Narębski for Making cloned repository in git the master Jakub Narębski 2009-11-07T23:43:01Z 2009-11-08T14:52:12Z <p><strong>Note</strong>: Complicated technique desceibed below is required only if 'cloned' repository is <em>working repository</em> (i.e. <em>non-bare</em> repository you commit in, using separate remotes layout), and not bare (or mirror) repository. If 'cloned.git' is a bare repository it is enough to do <code>git clone --bare</code> (or <code>git clone --mirror</code>) to recover original 'report.git' repository (just like e.g. <a href="http://stackoverflow.com/questions/1694608/making-cloned-repository-in-git-the-master/1694661#1694661">alinrus wrote</a>).</p> <p><hr></p> <p>Assuming that you used default configuration and modern Git, which means "separate remotes" layout, you would have remote-tracking branches of 'report.git' in 'remotes/origin' (or 'remotes/report') namespace.</p> <p>To re-create 'report.git' repository you would have to push (or fetch) once from remote-tracking branches to ordinary branches, reverting ordinary fetch refspec (at least for branches: tags are always mirrored). So the refspec for one time push (or fetch) would be something like the following: <code>refs/remotes/origin/*:refs/heads/*</code> plus <code>refs/tags/*:refs/tags/*</code>.</p> <p><hr></p> <h3>Example recovery session</h3> <p>Let's assume that original 'report.git' repository contains two branches: 'master' and 'next', and no tags (tags are mapped 1-1, so they shouldn't be a problem, anyway):</p> <pre><code>$ git init --bare report.git # ... [report.git] $ git branch -a * master next </code></pre> <p>Let's have 'cloned/.git' repository to be oridinary (non-bare and non-mirror) clone of 'report.git':</p> <pre><code>$ git clone user@example.com:report.git cloned Initialized empty Git repository in /tmp/jnareb/cloned/.git/ # ... [cloned] $ git branch -a * master remotes/origin/HEAD -&gt; origin/master remotes/origin/master remotes/origin/next [cloned] $ git remote show origin * remote origin Fetch URL: user@example.com:report.git Push URL: user@example.com:report.git HEAD branch: master Remote branches: master tracked next tracked Local branch configured for 'git pull': master merges with remote master Local ref configured for 'git push': master pushes to master (up to date) </code></pre> <p>Of course status of your branches, and the number of your local branches might differ for your situation. This is just a simple example.</p> <p>Now let's remove, or better yet rename (move aside) the original repository 'report.git', to test our recovery operation</p> <pre><code>$ mv report.git report-copy.git </code></pre> <p>Now we recovet the state of 'report.git' that it had on last fetch / pull operation in 'cloned/.git':</p> <pre><code>$ git init report.git # push won't create new repository # move to 'cloned' repository [cloned] $ git push user@example.com:report.git 'refs/remotes/origin/*:refs/heads/*' Counting objects: 12, done. Compressing objects: 100% (6/6), done. Writing objects: 100% (12/12), 839 bytes, done. Total 12 (delta 1), reused 0 (delta 0) Unpacking objects: 100% (12/12), done. warning: updating the current branch # long warning about pushing into current branch To user@example.com:report.git * [new branch] origin/HEAD -&gt; HEAD * [new branch] origin/master -&gt; master * [new branch] origin/next -&gt; next </code></pre> <p>Now you can compare 'report.git' and 'report-copy.git' if there are identical. If 'report.git' was <em>non-bare</em> they might differ, because push would not update working directory (and you would need to do <code>git reset --hard HEAD</code> or <code>git checkout</code> in 'report.git' yourself), but it is a bare repository, isn't it?</p> <p>HTH (hope that helps).</p> http://stackoverflow.com/questions/1681762/how-to-handle-xml-html-in-git-feature-branch-workflow/1690981#1690981 1 Answer by Jakub Narębski for How to handle xml/html in git feature branch workflow ? Jakub Narębski 2009-11-06T22:37:40Z 2009-11-06T22:37:40Z <p>Git allows for <strong>custom merge drivers</strong>, selected via <a href="http://www.kernel.org/pub/software/scm/git/docs/gitattributes.html" rel="nofollow">gitattributes</a> per path (e.g. for all <code>*.xml</code> files).</p> <p>What you need to find is a XML-aware merge driver, plus possibly also write a simple script to transform between Git conventions and said merge driver conventions. There is for example <a href="http://p3rl.org/XML%3A%3AMerge" rel="nofollow">XML::Merge</a> Perl module. There is <a href="http://gemo.saclay.inria.fr//software/XyDiff/" rel="nofollow">XyDiff</a>, but it looks like it lacks three-way merge (and I guess that for XML building 3-way merge from diffs like described in <a href="http://www.cis.upenn.edu/~bcpierce/papers/diff3-short.pdf" rel="nofollow">A Formal Investigation of Diff3</a> paper (PDF) wouldn't work). You can also read <a href="http://useless-factor.blogspot.com/2008/01/matching-diffing-and-merging-xml.html" rel="nofollow">Matching, diffing and merging XML</a> blog post (or article referenced therein).</p> <p>Another solution would be to <strong>unset merge attribute</strong> for XML files (they would be treated like binary files wrt. merge conflicts), and use some graphical merge tool to resolve merge conflicts, perhaps via <a href="http://www.kernel.org/pub/software/scm/git/docs/git-mergetool.html" rel="nofollow">git mergetool</a>.</p> http://stackoverflow.com/questions/1677049/how-do-i-get-my-git-merge-conflicts-back-after-merging-incorrectly/1689871#1689871 1 Answer by Jakub Narębski for How do I get my git merge conflicts back after merging incorrectly? Jakub Narębski 2009-11-06T19:40:03Z 2009-11-06T19:40:03Z <p>First, check out if you have conflicted state in the index (<em>before resetting to HEAD</em>), via </p> <pre><code>$ git ls-files --stage --abbrev my_file </code></pre> <p>You should get something like the following:</p> <pre><code>100644 257cc56 1 my_file 100644 b7d6715 2 my_file 100644 5716ca5 3 my_file </code></pre> <p>If you don't get that, you would have to use <code>git update-index</code>, like <a href="http://stackoverflow.com/questions/1677049/how-do-i-get-my-git-merge-conflicts-back-after-merging-incorrectly/1679900#1679900">Charles Bailey said</a>, or use temporary files. If you have that, then</p> <pre><code>$ git checkout -m my_file </code></pre> <p>should work (I have checked this).</p> http://stackoverflow.com/questions/1664801/how-do-i-merge-a-single-commit/1664911#1664911 3 Answer by Jakub Narębski for How do I merge a single commit? Jakub Narębski 2009-11-03T02:35:59Z 2009-11-03T08:54:10Z <p>The solution, but unfortunately the one you rather need to know <em>before</em> making the change, is to create separate branch only for this change (so called "<strong>topic branch</strong>"), off the earliest branch or earliest commit that makes sense, and merge this branch into any branch that needs this commit.</p> <p>In some cases other solution could be to make change in maintenance branch, merge maintenance branch into stable branch, and merge stable branch into development branch.</p> <p>Junio C Hamano (Git maintainer) wrote about this in his blog: <a href="http://gitster.livejournal.com/27297.html" rel="nofollow">Resolving conflicts/dependencies between topic branches early</a></p> http://stackoverflow.com/questions/1662205/how-to-make-a-git-repository-read-only/1663441#1663441 6 Answer by Jakub Narębski for How to make a git repository read-only? Jakub Narębski 2009-11-02T20:19:40Z 2009-11-02T20:19:40Z <p>There is more than one possible way to do this.</p> <ul> <li><p>If your users each have a shell account (perhaps limited), and each of them accessing git repositories via their own account, you can use <strong>filesystem permissions</strong> to control SSH access to git repositories. On Unix those would be write permissions on <em>directories</em>, perhaps with the help of creating a group and specific permissions for a group (with "sticky group ID" set).</p></li> <li><p>Pushing requires <strong><code>git-receive-pack</code></strong> to be in $PATH of user, and be executable for them... although I am not sure how feasible this approach would be.</p></li> <li><p>You can use <strong><code>update</code> or <code>pre-receive</code> hook</strong> to do access control to repository, for example using <a href="http://git.kernel.org/?p=git/git.git;a=blob;f=contrib/hooks/update-paranoid;hb=HEAD" rel="nofollow" title="git.kernel.org - git/git.git/blob - contrib/hooks/update-paranoid">update-paranoid</a> example hook from <code>contrib/hooks</code> in git sources.</p></li> <li><p>With larger number of users you could be better with using a <strong>tool to manage access to git repositories</strong>, like <a href="http://swik.net/gitosis" rel="nofollow">Gitosis</a> (in Python, requires setuptools) or <a href="http://github.com/sitaramc/gitolite" rel="nofollow">Gitolite</a> (in Perl).</p></li> <li><p>For read only access you can setup <strong><a href="http://www.kernel.org/pub/software/scm/git/docs/git-daemon.html" rel="nofollow" title="git-daemon(1) Manual Page - A really simple server for git repositories">git daemon</a></strong> to provide read-only anonymous (and unauthenticated) access via <code>git://</code> protocol, instead of access via SSH protocol. </p> <p>See documentation for <code>url.&lt;base&gt;.insteadOf</code> config variable for a way to ease the transition from SSH to GIT protocol.</p></li> </ul> <p><hr /></p> <p>See also Chapter 4. "<a href="http://progit.org/book/ch4-0.html" rel="nofollow">Git on the Server</a>" of <a href="http://progit.org" rel="nofollow">Pro Git</a> book by Scott Chacon (CC-BY-NC-SA licensed).</p> http://stackoverflow.com/questions/1660022/git-howto-manually-merge-file-from-working-tree-with-a-file-from-head/1660409#1660409 1 Answer by Jakub Narębski for Git: howto manually merge file from working tree with a file from HEAD Jakub Narębski 2009-11-02T10:12:04Z 2009-11-02T10:12:04Z <p>One way of doing it is to make use of <code>-m</code> option to "git checkout":</p> <ol> <li><p>Check out the <strong>base</strong> (ancestor) version, for example if you want to do a three-way merge between current version (HEAD), previous version (HEAD^) and generated file (in working directory):</p> <pre><code>git checkout HEAD^ </code></pre> <p>Do not worry about warning about detached HEAD.</p></li> <li><p>Generate your files</p></li> <li><p>Use <code>-m</code> option of "git checkout" to merge changes from working area:</p> <pre><code>git checkout -m @{-1} # or "git checkout -m &lt;branch&gt;" </code></pre></li> </ol> <p>From <a href="http://www.kernel.org/pub/software/scm/git/docs/git-checkout.html" rel="nofollow">git checkout</a> manpage:</p> <blockquote> <p><b>-m::</b><br /> <b>--merge::</b></p> <blockquote> <p>When switching branches, if you have local modifications to one or more files that are different between the current branch and the branch to which you are switching, the command refuses to switch branches in order to preserve your modifications in context. However, with this option, a three-way merge between the current branch, your working tree contents, and the new branch is done, and you will be on the new branch.</p> </blockquote> </blockquote> <p>Not tested!</p> <p><hr /></p> <p>As a fallback you always have <strong><a href="http://www.kernel.org/pub/software/scm/git/docs/git-merge-file.html" rel="nofollow">git merge-file</a></strong> low level (plumbing) command.</p> http://stackoverflow.com/questions/1800087/git-merge-recursive-not-doing-what-i-want/1800131#1800131 Comment by Jakub Narębski on Git merge recursive not doing what I want. Jakub Narębski 2009-11-25T23:47:45Z 2009-11-25T23:47:45Z And there is also <code>:1:path/to/file</code> syntax to access given stage in the index (with conflict partially resolved). http://stackoverflow.com/questions/1797074/local-executing-hook-after-a-git-push/1799624#1799624 Comment by Jakub Narębski on Local executing hook after a git push? Jakub Narębski 2009-11-25T21:24:05Z 2009-11-25T21:24:05Z Same information can be found in: <a href="http://permalink.gmane.org/gmane.comp.version-control.git/71069" rel="nofollow">permalink.gmane.org/gmane.comp.version-control.git/&hellip;</a> http://stackoverflow.com/questions/1794196/working-copy-is-on-master-branch-how-to-update-from-remote-server/1794222#1794222 Comment by Jakub Narębski on working copy is on master branch, how to update from remote server? Jakub Narębski 2009-11-25T12:59:29Z 2009-11-25T12:59:29Z If you have local &quot;master&quot; branch checked out, then &quot;git pull origin master&quot; (or even simply &quot;git pull origin&quot;, or perhaps even &quot;git pull&quot;) would update this branch. http://stackoverflow.com/questions/1794196/working-copy-is-on-master-branch-how-to-update-from-remote-server/1794211#1794211 Comment by Jakub Narębski on working copy is on master branch, how to update from remote server? Jakub Narębski 2009-11-25T12:58:07Z 2009-11-25T12:58:07Z Do not use <code>git pull &lt;remote&gt; &lt;remote-branch&gt;:&lt;local-branch&gt;</code> syntax, unless you <i>really, really, really</i> know what it would do. Just... don't. http://stackoverflow.com/questions/1793781/git-global-tags-evidently-bad-but-why/1793799#1793799 Comment by Jakub Narębski on Git global tags--- evidently bad, but why? Jakub Narębski 2009-11-25T01:37:35Z 2009-11-25T01:37:35Z Tags are not automatically included during pushing, because by default git pushes <b>matching</b> refs (and by definition new tags would not be present on remote side, hence would not be matching). http://stackoverflow.com/questions/1793781/git-global-tags-evidently-bad-but-why Comment by Jakub Narębski on Git global tags--- evidently bad, but why? Jakub Narębski 2009-11-25T01:36:08Z 2009-11-25T01:36:08Z Note that it is only the default; tags are not pushed because by default git push <b>matching</b>. When fetching git <b>autofolows</b> tags (i.e. fetches them when fetching commits they point to). You can always configure git to push/fetch all tags. http://stackoverflow.com/questions/1793781/git-global-tags-evidently-bad-but-why/1793799#1793799 Comment by Jakub Narębski on Git global tags--- evidently bad, but why? Jakub Narębski 2009-11-25T01:34:29Z 2009-11-25T01:34:29Z Actually tags are <b>autofollowed</b> on fetch by default, which means that git would fetch the tags that points to fetched commits. http://stackoverflow.com/questions/1791854/diffing-between-two-entire-directories-projects/1791887#1791887 Comment by Jakub Narębski on Diffing between two entire directories/projects? Jakub Narębski 2009-11-24T19:32:10Z 2009-11-24T19:32:10Z Actually <code>git diff</code> <b>can</b> compare arbitrary files/directories; you might need to use its <code>--no-index</code> option http://stackoverflow.com/questions/1789017/git-push-a-single-commit Comment by Jakub Narębski on git: push a single commit Jakub Narębski 2009-11-24T10:17:01Z 2009-11-24T10:17:01Z Yes, you can rewrite history (or create separate branch with required history) and then push. This is the only way. http://stackoverflow.com/questions/1778088/how-to-clone-a-single-branch-in-git Comment by Jakub Narębski on How to clone a single branch in git? Jakub Narębski 2009-11-22T10:57:02Z 2009-11-22T10:57:02Z What does <code>git branch -a</code> show? http://stackoverflow.com/questions/1773731/in-git-how-do-i-remove-a-commit-from-one-branch-and-apply-it-to-a-different-bran/1773751#1773751 Comment by Jakub Narębski on In git, how do I remove a commit from one branch and apply it to a different branch? Jakub Narębski 2009-11-21T00:48:36Z 2009-11-21T00:48:36Z Note that reset / rebase both do <b>history rewriting</b>, so they should not be used if the history was published - then you would have to use git-revert instead. http://stackoverflow.com/questions/1768486/how-not-to-scare-programmers-using-visual-source-safe Comment by Jakub Narębski on How not to scare programmers using Visual Source Safe :-) Jakub Narębski 2009-11-20T09:03:43Z 2009-11-20T09:03:43Z What do you mean by &quot;Git 'server' tooling is fairly rudimentary'? There are both git access management tools like Gitosis and (younger) Gitolite, git hosting solutions like GitHub:FI, Gitorious, Girocco or InDefero, and review boards such as Gerrit (see article on Gerrit at LWN.net)? http://stackoverflow.com/questions/1764561/are-there-any-high-profile-commercial-users-of-git Comment by Jakub Narębski on Are there any high profile commercial users of GIT? Jakub Narębski 2009-11-19T18:54:02Z 2009-11-19T18:54:02Z Mozilla uses <b>Mercurial</b>, not Git, if I remember correctly. http://stackoverflow.com/questions/1761054/git-in-a-company-hosting-own-server/1761080#1761080 Comment by Jakub Narębski on Git in a company - hosting own 'server' Jakub Narębski 2009-11-19T10:34:16Z 2009-11-19T10:34:16Z There is also gitolite, a similar tool: <a href="http://github.com/sitaramc/gitolite" rel="nofollow">github.com/sitaramc/gitolite</a> http://stackoverflow.com/questions/1756600/when-youre-the-origin-repo-in-git-how-do-you-do-a-local-pull/1756624#1756624 Comment by Jakub Narębski on When you're the origin repo in git, how do you do a local pull? Jakub Narębski 2009-11-18T19:48:11Z 2009-11-18T19:48:11Z I think he wants to pull from one of child / leaf repositories