User Aristotle Pagaltzis - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T00:51:59Z http://stackoverflow.com/feeds/user/9410 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/645450/git-how-to-insert-a-commit-as-the-first-shifting-all-the-others/647451#647451 4 Answer by Aristotle Pagaltzis for git: how to insert a commit as the first, shifting all the others? Aristotle Pagaltzis 2009-03-15T07:45:24Z 2009-05-19T22:25:29Z <p>Here’s a cleaner implementation of the same solution, in that it works without the need to create an extra repository, futz around with remotes, and correct a detached head:</p> <pre><code># first you need a new empty branch; let's call it `newroot` git symbolic-ref HEAD refs/heads/newroot git rm --cached -r . git clean -f -d # then you apply the same steps git commit --allow-empty -m 'root commit' git cherry-pick $(git rev-list --reverse master | head -1) git rebase --onto newroot newroot master git branch -d newroot </code></pre> <p>Voila, you’ve ended up on <code>master</code> with its history rewritten to include an empty root commit.</p> http://stackoverflow.com/questions/89332/recover-dropped-stash-in-git/91795#91795 9 Answer by Aristotle Pagaltzis for Recover dropped stash in git Aristotle Pagaltzis 2008-09-18T11:38:25Z 2009-05-06T05:17:04Z <p>Try this:</p> <pre><code>git fsck | awk '/dangling commit/ {print $3}' </code></pre> <p>It’s <em>much</em> faster than passing <code>--unreachable</code>, though it doesn’t show you all the unreachable commits, only the tips of the tree.</p> <p>The easiest way to then get at your commit is to pass that list to <code>gitk</code>:</p> <pre><code>gitk --all $( git fsck | awk '/dangling commit/ {print $3}' ) </code></pre> <p>This will launch a repo browser showing every single commit in the repository ever, regardless of whether it is reachable or not. From there you can use the context menu to create a branch for the unreachable commits you are interested in. After that you can do whatever you want with them with all the normal tools.</p> <p>When you’re done, just blow those branches away again.</p> http://stackoverflow.com/questions/550566/sqlite-table-with-git-merging/551409#551409 0 Answer by Aristotle Pagaltzis for SQLite table with Git merging Aristotle Pagaltzis 2009-02-15T19:02:33Z 2009-02-15T19:02:33Z <p>There is no way to merge binary files correctly this in the general case, so git cannot and will not do it.</p> <p>With some effort, you could use git to version database dumps, but except for very simple cases you’ll have to do more than just use straight dumps. You’ll need to think about how the dumped rows are sorted based on your key columns, at the very least. Else you’ll get spurious merges or conflicts that produce syntactically valid merged dumps representing a garbage database.</p> <p>F.ex., if different versions of a row with the same key show up in different line regions of different versions of the dump, git might think it reasonable to keep them both. The resulting dump would have two representations of the same row, which is nonsense.</p> <p>In short, you’ll probably be unhappy trying to keep a database versioned using a source control system.</p> http://stackoverflow.com/questions/492838/why-do-my-perl-tests-fail-with-use-encoding-utf8/493508#493508 8 Answer by Aristotle Pagaltzis for Why do my Perl tests fail with `use encoding 'utf8'`? Aristotle Pagaltzis 2009-01-29T21:25:44Z 2009-01-29T21:25:44Z <p><strong>Do not</strong> use the <a href="http://perldoc.perl.org/encoding.html" rel="nofollow"><code>encoding</code> pragma</a>. It’s broken. (Juerd Waalboer gave a great talk where he mentioned this at YAPC::EU 2k8.)</p> <p>It does at least two things at once that do not belong together:</p> <ol> <li>It specifies an encoding for your source file.</li> <li>It specifies an encoding for your file input/output.</li> </ol> <p>And to add injury to insult it also does #1 in a broken fashion: it reinterprets <code>\xNN</code> sequences as being undecoded octets as opposed to treating them like codepoints, and decodes them, preventing you from being able to express characters outside the encoding you specified and making your source code mean different things depending on the encoding. That’s just astonishingly wrong.</p> <p>Write your source code in ASCII or UTF-8 only. In the latter case, <strong>the <a href="http://perldoc.perl.org/utf8.html" rel="nofollow"><code>utf8</code> pragma</a></strong> is the correct thing to use. If you don’t want to use UTF-8, but you do want to include non-ASCII charcters, escape or decode them explicitly.</p> <p>And use I/O layers explicitly or set them using <strong>the <a href="http://perldoc.perl.org/open.html" rel="nofollow"><code>open</code> pragma</a></strong> to have I/O automatically transcoded properly.</p> http://stackoverflow.com/questions/155449/vim-auto-generate-ctags/164404#164404 0 Answer by Aristotle Pagaltzis for Vim auto-generate ctags Aristotle Pagaltzis 2008-10-02T20:25:33Z 2009-01-29T19:24:01Z <p><b>Edit</b>: A solution very much along the lines of the following has been posted as <strong>the <a href="http://www.vim.org/scripts/script.php?script_id=1343" rel="nofollow">AutoTag</a> vim script</strong>. Note that the script <strong>needs a vim with Python support</strong>, however.</p> <p>My solution shells out to awk instead, so it should work on many more systems.</p> <p><hr /></p> <pre><code>au FileType {c,cpp} au BufWritePost &lt;buffer&gt; silent ! [ -e tags ] &amp;&amp; \ ( awk -F'\t' '$2\!="%:gs/'/'\''/"{print}' tags ; ctags -f- '%:gs/'/'\''/' ) \ | sort -t$'\t' -k1,1 -o tags.new &amp;&amp; mv tags.new tags </code></pre> <p>Note that you can only write it this way in a script, otherwise it has to go on a single line.</p> <p>There’s lot going on in there:</p> <ol> <li><p>This auto-command triggers when a file has been detected to be C or C++, and adds in turn a buffer-local auto-command that is triggered by the <code>BufWritePost</code> event.</p></li> <li><p>It uses the <code>%</code> placeholder which is replaced by the buffer’s filename at execution time, together with the <code>:gs</code> modifier used to shell-quote the filename (by turning any embedded single-quotes into quote-escape-quote-quote).</p></li> <li><p>That way it runs a shell command that checks if a <code>tags</code> file exists, in which case its content is printed except for the lines that refer to the just-saved file, meanwhile <code>ctags</code> is invoked on just the just-saved file, and the result is then <code>sort</code>ed and put back into place.</p></li> </ol> <p>Caveat implementor: this assumes everything is in the same directory and that that is also the buffer-local current directory. I have not given any thought to path mangling.</p> http://stackoverflow.com/questions/480424/assembling-sql-in-an-object-oriented-fashion/480779#480779 7 Answer by Aristotle Pagaltzis for Assembling SQL in an object-oriented fashion Aristotle Pagaltzis 2009-01-26T18:10:59Z 2009-01-28T03:59:18Z <p>You want to look at <b><a href="http://p3rl.org/Fey::SQL" rel="nofollow">Fey</a></b>. I started using it a few months ago on the job, and while the implementation still has rough corners due to young age, the idea behind it is solid. F.ex., take a query lightly adapted from the manual:</p> <pre><code>my $user = $schema-&gt;table( 'user' ); my $q = Fey::SQL -&gt;new_select -&gt;select( $user-&gt;columns( 'user_id', 'username' ) ) -&gt;from( $user ); </code></pre> <p>Now you could write a function like this:</p> <pre><code>sub restrict_with_group { my ( $q, $table, @group_id ) = @_; my $group = $schema-&gt;table( 'group' )-&gt;alias; $q -&gt;from( $table, $group ) -&gt;where( $group-&gt;column( 'group_id' ), 'IN', @group_id ); } </code></pre> <p>This will add an inner join from <code>user</code> to <code>group</code> as well as a <code>WHERE</code> condition. And voila, you can write the following in the main program:</p> <pre><code>restrict_with_group( $q, $user, qw( 1 2 3 ) ); </code></pre> <p><strong>But this <code>restrict_with_group</code> function will work for <em>any</em> query that that has a foreign key to the <code>group</code> table!</strong> To use it, you pass the query you want to restrict and the table to which you want to apply the restriction, as well as the group IDs to which you want to restrict it.</p> <p>In the end you say <code>$q-&gt;sql( $dbh )</code> and you get back a string of SQL representing the query that you have built up in the <code>$q</code> object.</p> <p>So basically Fey gives you the abstractive capabilities that native SQL is missing. You can extract reusable aspects from your queries and package them as separate functions.</p> http://stackoverflow.com/questions/404838/do-you-prefer-if-var-or-if-var-0/405358#405358 3 Answer by Aristotle Pagaltzis for Do you prefer "if (var)" or "if (var != 0)"? Aristotle Pagaltzis 2009-01-01T19:37:57Z 2009-01-01T19:37:57Z <p>For numeric value scalars, I tend to write <code>if ( $num_foo )</code> when <code>$num_foo</code> is in my control. If it’s user input or passed in from outside I either numify it first or spell out the test explicitly. It depends on a lot of factors. The main criterion is when and how it’s convenient to deal with undefined values, in order to avoid warnings.</p> <p>To test for non-empty string, I used to write <code>if ( $foo )</code> because the correct incantation is just way too much typing:</p> <pre><code>if ( defined $foo and length $foo ) </code></pre> <p>But I wasn’t satisfied with this state of affairs so <a href="http://www.nntp.perl.org/group/perl.perl5.porters/;msgid=20080111141206.GF17196@klangraum" rel="nofollow">I instigated a change of behaviour for <code>length undef</code> in Perl 5.12</a>, which throws a warning and returns 0 up to Perl 5.10 inclusive. <a href="http://www.nntp.perl.org/group/perl.perl5.changes/;msgid=20080112223005.697B550007@mx.activestate.com" rel="nofollow">In 5.12 it will just silently return <code>undef</code></a>. Therefore in non-boolean contexts you still get a warning, it just happens after the <code>length</code> call is evaluated rather than before. But in boolean contexts, there is no warning, so checking for a non-empty string is much easier to do correctly:</p> <pre><code>if ( length $foo ) </code></pre> http://stackoverflow.com/questions/391710/in-vim-what-is-the-simplest-way-to-join-all-lines-in-a-file-into-a-single-line/392296#392296 2 Answer by Aristotle Pagaltzis for In Vim, what is the simplest way to join all lines in a file into a single line? Aristotle Pagaltzis 2008-12-24T22:36:11Z 2008-12-24T22:36:11Z <p>I’m surprised no one even mentioned the other way:</p> <pre><code>:%s/\n/ / </code></pre> <p>I am equally surprised that no one pointed out that the range <code>1,$</code> has a shorthand that’s written <code>%</code>.</p> <p>(This doesn’t do the same thing as joining the lines, but depending on circumstances that may in fact be more appropriate.)</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/347961#347961 15 Answer by Aristotle Pagaltzis for What are your favorite git features or tricks? Aristotle Pagaltzis 2008-12-07T19:38:07Z 2008-12-07T19:38:07Z <p>My favourite feature, hands down, is <b>the index</b>. Since my initial surprise about it abated and I got used to it, I have wondered why anyone would want to work without this concept. The initial bewilderment about the behaviour of <code>git diff</code> with regards to the index turned into solid conviction.</p> <p>Often when I start to do a particular thing in a codebase, I don’t have a clear idea up front about what I will want to do. With git, I just start working and see where the work takes me. I can use <code>git add</code> to incrementally add things for the next commit to the index, either as I work or afterwards, and use <code>git diff</code> to review which tentative changes I have not yet evaluated.</p> <p>In that way, git lets me follow a pretty free-wheeling style of work, while still allowing me to easily render it as a series of small coherent patches once I have found out what made sense to do. I don’t need to plan ahead carefully and follow the plan meticulously.</p> <p>Yeah, the index is an extra layer of indirection that seems unnecessary at first glance. What I have found is that instead it is liberating.</p> http://stackoverflow.com/questions/312055/how-do-i-fix-missing-git-remote-details/312267#312267 7 Answer by Aristotle Pagaltzis for How do I fix missing git remote details? Aristotle Pagaltzis 2008-11-23T07:29:56Z 2008-11-23T07:29:56Z <p>Or if you prefer, you can do <a href="#312061" rel="nofollow">the same thing Brian Gianforcaro proposed</a> from the command line:</p> <pre><code>git config branch.master.remote origin git config branch.master.merge refs/heads/master </code></pre> http://stackoverflow.com/questions/299405/when-should-i-use-oo-perl/300117#300117 15 Answer by Aristotle Pagaltzis for When should I use OO Perl? Aristotle Pagaltzis 2008-11-18T20:58:40Z 2008-11-18T20:58:40Z <p><a href="http://www.perlmonks.org/?node_id=91080" rel="nofollow">From Damian Conway</a>:</p> <blockquote> <h2>10 criteria for knowing when to use object-oriented design</h2> <p><hr /></p> <ol> <li><h3>Design is large, or is likely to become large</h3></li> <li><h3>When data is aggregated into obvious structures, especially if there’s a lot of data in each aggregate</h3> <p>For instance, an IP address is not a good candidate: There’s only 4 bytes of information related to an IP address. An immigrant going through customs has a lot of data related to him, such as name, country of origin, luggage carried, destination, etc.</p></li> <li><h3>When types of data form a natural hierarchy that lets us use inheritance.</h3> <p>Inheritance is one of the most powerful feature of OO, and the ability to use it is a flag.</p></li> <li><h3>When operations on data varies on data type</h3> <p>GIFs and JPGs might have their cropping done differently, even though they’re both graphics.</p></li> <li><h3>When it’s likely you’ll have to add data types later</h3> <p>OO gives you the room to expand in the future.</p></li> <li><h3>When interactions between data is best shown by operators</h3> <p>Some relations are best shown by using operators, which can be overloaded.</p></li> <li><h3>When implementation of components is likely to change, especially in the same program</h3></li> <li><h3>When the system design is already object-oriented</h3></li> <li><h3>When huge numbers of clients use your code</h3> <p>If your code will be distributed to others who will use it, a standard interface will make maintenence and safety easier.</p></li> <li><h3>When you have a piece of data on which many different operations are applied</h3> <p>Graphics images, for instance, might be blurred, cropped, rotated, and adjusted.</p></li> <li><h3>When the kinds of operations have standard names (check, process, etc)</h3> <p>Objects allow you to have a <code>DB::check</code>, <code>ISBN::check</code>, <code>Shape::check</code>, etc without having conflicts between the types of check.</p></li> </ol> </blockquote> http://stackoverflow.com/questions/298314/find-files-in-git-repo-over-x-megabytes-that-dont-exist-in-head/298888#298888 10 Answer by Aristotle Pagaltzis for Find files in git repo over x megabytes, that don't exist in HEAD Aristotle Pagaltzis 2008-11-18T14:32:14Z 2008-11-18T15:34:25Z <p>This is an adaptation of <a href="http://stackoverflow.com/questions/223678/git-which-commit-has-this-blob#223890">the <code>git-find-blob</code> script I posted previously</a>:</p> <pre><code>#!/usr/bin/perl use 5.008; use strict; use Memoize; sub usage { die "usage: git-large-blob &lt;size[b|k|m]&gt; [&lt;git-log arguments ...&gt;]\n" } @ARGV or usage(); my ( $max_size, $unit ) = ( shift =~ /^(\d+)([bkm]?)\z/ ) ? ( $1, $2 ) : usage(); my $exp = 10 * ( $unit eq 'b' ? 0 : $unit eq 'k' ? 1 : 2 ); my $cutoff = $max_size * 2**$exp; sub walk_tree { my ( $tree, @path ) = @_; my @subtree; my @r; { open my $ls_tree, '-|', git =&gt; 'ls-tree' =&gt; -l =&gt; $tree or die "Couldn't open pipe to git-ls-tree: $!\n"; while ( &lt;$ls_tree&gt; ) { my ( $type, $sha1, $size, $name ) = /\A[0-7]{6} (\S+) (\S+) +(\S+)\t(.*)/; if ( $type eq 'tree' ) { push @subtree, [ $sha1, $name ]; } elsif ( $type eq 'blob' and $size &gt;= $cutoff ) { push @r, [ $size, @path, $name ]; } } } push @r, walk_tree( $_-&gt;[0], @path, $_-&gt;[1] ) for @subtree; return @r; } memoize 'walk_tree'; open my $log, '-|', git =&gt; log =&gt; @ARGV, '--pretty=format:%T %h %cr' or die "Couldn't open pipe to git-log: $!\n"; my %seen; while ( &lt;$log&gt; ) { chomp; my ( $tree, $commit, $age ) = split " ", $_, 3; my $is_header_printed; for ( walk_tree( $tree ) ) { my ( $size, @path ) = @$_; my $path = join '/', @path; next if $seen{ $path }++; print "$commit $age\n" if not $is_header_printed++; print "\t$size\t$path\n"; } } </code></pre> http://stackoverflow.com/questions/277485/how-can-i-repeat-a-string-in-perl/277831#277831 5 Answer by Aristotle Pagaltzis for How can I repeat a string in Perl? Aristotle Pagaltzis 2008-11-10T13:17:09Z 2008-11-10T13:17:09Z <p>FWIW, it’s also <code>print 4 x 4</code> in Perl.</p> <p>In general, in Perl, operators are monomorphic, ie. you have different sets of operators for string semantics, for numeric semantics, for bitwise semantics, etc., where it makes sense, and the type of the operands largely doesn’t matter. When you apply a numeric operator to a string, the string is converted to a number first and you get the operation you asked for (eg. multiplication), and when you apply a string operator to a number, it’s turned into a string and you get the operation you asked for (eg. repetition). Perl pays attention to the operator first and the types of the operands only second – if indeed it pays them any mind at all.</p> <p>This is the opposite of Python and most other languages, where you use one set of operators, and the types of the operands determine which semantics you’ll actually get – ie. operators are polymorphic.</p> http://stackoverflow.com/questions/277029/combining-multiple-git-repositories/277089#277089 11 Answer by Aristotle Pagaltzis for Combining multiple git repositories Aristotle Pagaltzis 2008-11-10T05:01:12Z 2008-11-10T11:48:21Z <blockquote> <p><a href="http://p3rl.org/git-stitch-repo" rel="nofollow"><code>git-stitch-repo</code></a> will process the output of <code>git-fast-export --all --date-order</code> on the git repositories given on the command-line, and create a stream suitable for <code>git-fast-import</code> that will create a new repository containing all the commits in a new commit tree that respects the history of all the source repositories.</p> </blockquote> http://stackoverflow.com/questions/277077/why-is-git-telling-me-your-branch-is-ahead-of-origin-master-by-11-commits-an/277098#277098 6 Answer by Aristotle Pagaltzis for Why is Git telling me "Your branch is ahead of 'origin/master' by 11 commits." and how do I get it to stop? Aristotle Pagaltzis 2008-11-10T05:09:59Z 2008-11-10T05:15:24Z <blockquote> <p>I thought my laptop was the origin…</p> </blockquote> <p>That’s kind of nonsensical: <code>origin</code> refers to the default remote repository – the one you usually fetch/pull other people’s changes from.</p> <blockquote> <p>How can I:</p> </blockquote> <ol> <li><p><code>git remote -v</code> will show you what <code>origin</code> is; <code>origin/master</code> is your “bookmark” for the last known state of the <code>master</code> branch of the <code>origin</code> repository, and your own <code>master</code> is a <a href="http://book.git-scm.com/4_tracking_branches.html" rel="nofollow">tracking branch</a> for <code>origin/master</code>. <a href="http://book.git-scm.com/3_distributed_workflows.html" rel="nofollow">This is all as it should be</a>.</p></li> <li><p>You don’t. At least it makes no sense for a repository to be the default remote repository for itself.</p></li> <li><p>It isn’t. It’s merely telling you that you have made so-and-so many commits locally which aren’t in the remote repository (according to the last known state of that repository).</p></li> </ol> http://stackoverflow.com/questions/237408/pushing-an-existing-git-repository-to-github-only-sends-about-half-the-commits/276495#276495 3 Answer by Aristotle Pagaltzis for Pushing an existing Git repository to Github only sends about half the commits? Aristotle Pagaltzis 2008-11-09T21:25:14Z 2008-11-09T21:25:14Z <p>A very simple approach for fixing this sort of problem is to just delete the <code>master</code> branch and recreate it. After all, branches in git are merely names for commits and the <code>master</code> branch is nothing special.</p> <p>So assuming that the current commit is the one you want <code>master</code> to be, you simply do</p> <pre><code>git branch -D master </code></pre> <p>to delete the existing <code>master</code> branch, then do</p> <pre><code>git checkout -b master </code></pre> <p>to a) create a new branch called <code>master</code> that points to the current commit and b) update <code>HEAD</code> to point to the <code>master</code> branch. After that, <code>HEAD</code> will be attached to <code>master</code> and therefore <code>master</code> will move forward whenever you commit.</p> http://stackoverflow.com/questions/273695/git-branch-naming-best-practices/273760#273760 4 Answer by Aristotle Pagaltzis for git branch naming best practices Aristotle Pagaltzis 2008-11-07T21:51:16Z 2008-11-07T21:56:47Z <p>My personal preference is to delete the branch name after I’m done with a topic branch.</p> <p>Instead of trying to use the branch name to explain the meaning of the branch, I start the subject line of the commit message in the first commit on that branch with “Branch:” and include further explanations in the body of the message if the subject does not give me enough space.</p> <p>The branch name in my use is purely a handle for referring to a topic branch while working on it. Once work on the topic branch has concluded, I get rid of the branch name, sometimes tagging the commit for later reference.</p> <p>That makes the output of <code>git branch</code> more useful as well: it only lists long-lived branches and active topic branches, not all branches ever.</p> http://stackoverflow.com/questions/271571/filtering-dbixclass-resultsets-with-external-data/271646#271646 6 Answer by Aristotle Pagaltzis for Filtering DBIX::Class Resultsets With External Data Aristotle Pagaltzis 2008-11-07T09:48:19Z 2008-11-07T09:48:19Z <p>You can’t really, due to the goals for which DBIC result sets are designed:</p> <ul> <li>They compile down to SQL and run a single query, which they do no earlier than when you ask for results.</li> <li>They are composable.</li> </ul> <p>Allowing filtering by code that runs on the Perl side would make it extremely hairy to achieve those properties, and would hide the fact that such result sets actually run N queries when composed.</p> <p>Why do you want this, anyway? Why is simply retrieving the results and filtering them yourself insufficient?</p> <ul> <li><p><b>Encapsulation</b>? (Eg. hiding the filtering logic in your business logic layer but kicking off the query in the display logic layer.) Then write a custom ResultSet subclass that has an accessor that runs the query and does the desired filtering.</p></li> <li><p><b>Overhead</b>? (Eg. you will reject most results so you don’t want the overhead of creating objects for them.) Then use HashRefInflator.</p></li> </ul> http://stackoverflow.com/questions/263821/how-can-i-see-what-changes-have-been-made-in-a-git-repository-without-pulling-it/264558#264558 2 Answer by Aristotle Pagaltzis for How can I see what changes have been made in a git repository without pulling it into my working tree Aristotle Pagaltzis 2008-11-05T07:28:37Z 2008-11-05T07:28:37Z <p>If you really want to avoid <em>any</em> trace of the remote changes getting into your repo, you can do a local <code>git clone</code>, which will use hardlinks, so will take almost no extra space, and then apply <a href="#263833" rel="nofollow">Greg Hewgill’s answer</a> to that. If you are satisfied, you can go back to the original repository and pull from the local clone to avoid going over the network, although you should follow up with a <code>git fetch</code> in the original repository to make sure your remote tracking branches are up to date.</p> <p>Normally, that isn’t necessary, of course.</p> http://stackoverflow.com/questions/261557/what-do-i-need-to-read-to-understand-how-git-works/262986#262986 1 Answer by Aristotle Pagaltzis for What do I need to read to understand how git works? Aristotle Pagaltzis 2008-11-04T19:03:03Z 2008-11-04T19:03:03Z <p>The <a href="http://peepcode.com/products/git-internals-pdf" rel="nofollow">Git Internals</a> ebook <a href="#261976" rel="nofollow">has already been mentioned</a>. I will point out that its author, Scott Chacon, gave <a href="http://www.gitcasts.com/posts/railsconf-git-talk" rel="nofollow">a fantastic presentation about git at RailsConf 2008</a> that covers much the same ground as the book.</p> <p>Said Scott now maintains <a href="http://git-scm.com/" rel="nofollow">http://git-scm.com/</a>, which includes the <a href="http://book.git-scm.com/" rel="nofollow">Git community book</a>, which is more of a usage tutorial than a technical description, but does include both a nice conceptual overview of the git data model in the introductory chapter and a detailed one in its closing chapter.</p> http://stackoverflow.com/questions/35837/what-is-the-difference-between-mercurial-and-git/258488#258488 6 Answer by Aristotle Pagaltzis for What is the Difference Between Mercurial and Git? Aristotle Pagaltzis 2008-11-03T12:30:57Z 2008-11-03T12:30:57Z <p>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 and has rougher edges than focused apps do. But this also means git’s VCS is immensely flexible, and there is a huge depth of non-source-control things you can do with git.</p> <p>That is the essence of the difference.</p> <p>Git is best understood from the ground up – from the repository format up. <a href="http://www.gitcasts.com/posts/railsconf-git-talk" rel="nofollow">Scott Chacon’s Git Talk</a> is an excellent primer for this. If you try to use git without knowing what’s happening under the hood, you’ll just end up confused. This may sound stupid when all you want is a DVCS for your daily programming routine, but the genius of git is that the repository format is actually very simple and you <em>can</em> understand git’s entire operation quite easily.</p> <p>For some more technicality-oriented comparisons, the best articles I have personally seen are Dustin Sallings’:</p> <ul> <li><a href="http://www.rockstarprogrammer.org/post/2008/apr/06/differences-between-mercurial-and-git/" rel="nofollow">The Differences Between Mercurial and Git</a></li> <li><a href="http://www.reddit.com/r/programming/comments/64g43/aristotle_pagaltzis_why_i_chose_git/c02t4se" rel="nofollow">Reddit thread where git-experienced Dustin answers his own git neophyte questions</a></li> </ul> <p>He has actually used both DVCSs extensively and understands them both well – and ended up preferring git.</p> http://stackoverflow.com/questions/257065/is-there-a-way-to-add-a-specific-version-of-a-file-to-the-git-index 1 Is there a way to add a specific version of a file to the git index? Aristotle Pagaltzis 2008-11-02T17:12:27Z 2008-11-03T12:06:36Z <p>The reason I am asking this is that I had accidentally done a <code>git commit -a</code> that included a file I did not yet want to commit. My solution was to do the following:</p> <pre><code>git reset --soft HEAD^ git reset -- file/with/changes_not_to_committed git commit -C HEAD@{1} </code></pre> <p>Here, I’ve rewound the branch by one commit while keeping the index and working tree, then pulled <code>file/with/changes_not_to_committed</code> from a yet older revision into the index, and then I committed the index using the commit message from the previous branch head commit. Neither <code>git-reset</code> invocation touches the working copy, so my modifications to <code>file/with/changes_not_to_committed</code> persist, but are no longer recorded in the <code>HEAD</code> revision.</p> <p>However, it would have been easier if I could pull <code>file/with/changes_not_to_committed</code> from the <code>HEAD^</code> revision right into the index <em>without touching the working copy</em>. Since the index otherwise already represents the state I want, I could then just amend the <code>HEAD</code> commit, producing a sequence like this:</p> <pre><code>git magic-pony HEAD^ file/with/changes_not_to_committed git commit --amend -C HEAD </code></pre> <p>This is <em>almost</em> what I would get by replacing <code>git-magic-pony</code> with <code>git-checkout</code>, except for the requirement that the working copy be left untouched and only the index updated. It seems there is no way to make <code>git-checkout</code> not touch both.</p> <p>My question is: does <code>git-magic-pony</code> exist, and if so, under what name?</p> http://stackoverflow.com/questions/257065/is-there-a-way-to-add-a-specific-version-of-a-file-to-the-git-index/257196#257196 2 Answer by Aristotle Pagaltzis for Is there a way to add a specific version of a file to the git index? Aristotle Pagaltzis 2008-11-02T18:49:51Z 2008-11-03T12:06:36Z <p><del>So based on <a href="#257105" rel="nofollow">Greg Hewgill’s answer</a>, <code>git-magic-pony</code> is a shell script I would write which looks like this:</del></p> <pre><code><del>#!/bin/sh git ls-tree "$@" | while read mode type hash path ; do git update-index --cacheinfo $mode $hash "$path" done</code></del></pre> http://stackoverflow.com/questions/258251/how-do-i-inherit-subroutines-in-perl-with-use-base/258439#258439 2 Answer by Aristotle Pagaltzis for How do I inherit subroutines in Perl with 'use base'? Aristotle Pagaltzis 2008-11-03T12:01:26Z 2008-11-03T12:01:26Z <p>As a sidenote, there is little good reason to <code>use base</code> rather than the newer <code>use <a href="http://p3rl.org/parent" rel="nofollow">parent</a></code>.</p> http://stackoverflow.com/questions/255624/scripting-common-tasks-in-vim/256494#256494 1 Answer by Aristotle Pagaltzis for Scripting common tasks in Vim Aristotle Pagaltzis 2008-11-02T03:59:35Z 2008-11-02T03:59:35Z <p>I use <code>q</code>/<code>@</code> to record/replay a macro quite frequently.</p> <p>The next step up is trying to write in something like 3 or fewer ex commands.</p> <p>If something so complex that neither a macro nor a short ex sequence won’t suffice, I tend to write it as a Perl script instead. The vim script language is a bit too limited to try to do grand things in, for my taste. (Although vim 7 has made great strides in that respect, by borrowing a bunch of things from Python.)</p> <p>Note that <code>@</code> does something very simple: it takes the contents of a register and replays them as if you had typed them in normal mode. Likewise <code>q</code> simply records the sequence you are typing into the register you name. These are the <em>self-same</em> registers you use for yanking/putting – which means you can directly paste a recorded sequence into a file (<code>.vimrc</code> anyone?) or yank a sequence of commands from a file and replay it (so you could keep a bunch of them in <code>~/my-vim-macros.txt</code> or something).</p> http://stackoverflow.com/questions/241579/what-is-the-easiest-or-most-effective-way-to-convert-months-abbreviation-to-a-nu/241841#241841 2 Answer by Aristotle Pagaltzis for What is the easiest or most effective way to convert month's abbreviation to a number in Perl? (ie "jan" to 1) Aristotle Pagaltzis 2008-10-28T00:31:10Z 2008-10-28T00:31:10Z <pre><code>my %month_num = do { my $i = 1; map {; $_ =&gt; $i++ } ( qw( jan feb mar apr may jun jul aug sep oct nov dec ) ) }; </code></pre> <p>Or maybe:</p> <pre><code>my %month_num; $month_num{ $_ } = 1 + keys %month_num for ( qw( jan feb mar apr may jun jul aug sep oct nov dec ) ); </code></pre> <p>Or using a zip function:</p> <pre><code>my %month_num = do { my @month = qw( jan feb mar apr may jun jul aug sep oct nov dec ); zip2( 1 .. 1+$#month, @month ); }; </code></pre> http://stackoverflow.com/questions/237383/how-do-i-insert-a-linebreak-where-the-cursor-is-without-entering-into-insert-mode/237471#237471 1 Answer by Aristotle Pagaltzis for How do I insert a linebreak where the cursor is without entering into insert mode in Vim? Aristotle Pagaltzis 2008-10-26T03:23:25Z 2008-10-26T05:50:05Z <p>Vim will automatically kill any whitespace to the right of the cursor if you break a line in two while <code>autoindent</code> (or any other indentation aid) is enabled.</p> <p>If you do not want to use any of those settings, use <code>s</code> instead of <code>i</code> in order to <b>s</b>ubstitute your new text for the blank rather than just inserting. (If there are multiple blanks, put the cursor on the leftmost and use <code>cw</code> instead.)</p> http://stackoverflow.com/questions/235439/vim-80-column-layout-concerns/235962#235962 2 Answer by Aristotle Pagaltzis for Vim 80 column layout concerns Aristotle Pagaltzis 2008-10-25T05:39:41Z 2008-10-25T05:39:41Z <p>You can try this:</p> <pre><code>au BufWinEnter * if &amp;textwidth &gt; 8 \ | let w:m1=matchadd('MatchParen', printf('\%%&lt;%dv.\%%&gt;%dv', &amp;textwidth+1, &amp;textwidth-8), -1) \ | let w:m2=matchadd('ErrorMsg', printf('\%%&gt;%dv.\+', &amp;textwidth), -1) \ | endif </code></pre> <p>That will set up two highlights in every buffer, one for characters in the 8 columns prior to whatever your <code>&amp;textwidth</code> is set to, and one for characters beyond that column. That way you have some extent of anticipation. Of course you can tweak it to use a different width if you want more or less anticipation (which you pay for in the form of loss of syntax highlighting in those columns).</p> http://stackoverflow.com/questions/222782/git-vs-perforce-two-vcs-will-enter-one-will-leave/231675#231675 0 Answer by Aristotle Pagaltzis for GIT vs. Perforce- Two VCS will enter... one will leave. Aristotle Pagaltzis 2008-10-23T21:49:44Z 2008-10-23T22:59:16Z <p>Apparently <a href="http://github.com/training" rel="nofollow">GitHub now offer git training courses to companies</a>. Quoth <a href="http://github.com/blog/186-google-android-git-and-github" rel="nofollow">their blog post about it</a>:</p> <blockquote> <p>I’ve been down to the Google campus a number of times in the last few weeks helping to train the Androids there in Git. I was asked by Shawn Pearce (you may know him from his Git and EGit/JGit glory – he is the hero that takes over maintanance when Junio is out of town) to come in to help him train the Google engineers working on Andriod in <b>transitioning from Perforce to Git</b>, so Android could be shared with the masses. I can tell you I was more than happy to do it.</p> <p>[…]</p> <p>Logical Awesome is now <a href="http://github.com/training" rel="nofollow">officially offering</a> this type of custom training service to all companies, where we can help your organization with training and planning if you are thinking about switching to Git as well.</p> </blockquote> <p>Emphasis mine.</p> http://stackoverflow.com/questions/228978/how-can-i-reduce-duplication-in-constants/230051#230051 4 Answer by Aristotle Pagaltzis for How can I reduce duplication in constants? Aristotle Pagaltzis 2008-10-23T14:54:12Z 2008-10-23T14:54:12Z <pre><code>use constant +{ map { sprintf $_, '/var/log' } ( LOG_DIR =&gt; "%s/", LOG_FILENAME =&gt; "%s/file1.log", ), map { sprintf $_, '/etc/app1' } ( LOG4PERL_CONF_FILE =&gt; "%s/log4perl.conf", CONF_FILE1 =&gt; "%s/config1.xml", CONF_FILE2 =&gt; "%s/config2.xml", CONF_FILE3 =&gt; "%s/config3.xml", CONF_FILE4 =&gt; "%s/config4.xml", CONF_FILE5 =&gt; "%s/config5.xml", ), }; </code></pre> http://stackoverflow.com/questions/645450/git-how-to-insert-a-commit-as-the-first-shifting-all-the-others/647451#647451 Comment by Aristotle Pagaltzis on git: how to insert a commit as the first, shifting all the others? Aristotle Pagaltzis 2009-03-15T15:42:05Z 2009-03-15T15:42:05Z Thanks for the pointer – yes, I did miss the empty commit. Fixed. Haven’t used submodules, so I don’t know how that turns out. http://stackoverflow.com/questions/480424/assembling-sql-in-an-object-oriented-fashion/480793#480793 Comment by Aristotle Pagaltzis on Assembling SQL in an object-oriented fashion Aristotle Pagaltzis 2009-01-26T19:45:06Z 2009-01-26T19:45:06Z Down that path lies madness. I did that for a long time. It works as long as your queries need not be flexible in structure, but crumbles rapidly if you try to customise them on dynamically. http://stackoverflow.com/questions/305805/whats-the-best-way-to-work-with-github-and-multiple-computers/307742#307742 Comment by Aristotle Pagaltzis on Whats the best way to work with Github and multiple computers? Aristotle Pagaltzis 2008-11-23T01:00:00Z 2008-11-23T01:00:00Z “GRB: It doesn’t just stand for Gamma Ray Burst any more.” http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/95173#95173 Comment by Aristotle Pagaltzis on What are your favorite Vim tricks? Aristotle Pagaltzis 2008-11-23T00:52:03Z 2008-11-23T00:52:03Z Reloading the file will destroy your undo history for the buffer. I try to avoid that at all cost. http://stackoverflow.com/questions/277485/how-can-i-repeat-a-string-in-perl/277831#277831 Comment by Aristotle Pagaltzis on How can I repeat a string in Perl? Aristotle Pagaltzis 2008-11-11T02:12:14Z 2008-11-11T02:12:14Z a) Did you see anything in my answer about what you should or should not do? (This <code>4 x 4</code> is unlikely to show up in real Perl code verbatim anyway.) b) If it is less readable to you, you are paying attention to the wrong things (the forms of the operands, rather than the operator). http://stackoverflow.com/questions/277077/why-is-git-telling-me-your-branch-is-ahead-of-origin-master-by-11-commits-an/277186#277186 Comment by Aristotle Pagaltzis on Why is Git telling me "Your branch is ahead of 'origin/master' by 11 commits." and how do I get it to stop? Aristotle Pagaltzis 2008-11-10T06:57:20Z 2008-11-10T06:57:20Z He writes that he pushes to the <code>origin</code> repository (even though he’s not aware of how that works in git terms) – removing the remote would hardly be a useful thing to do for him. http://stackoverflow.com/questions/277029/combining-multiple-git-repositories/277089#277089 Comment by Aristotle Pagaltzis on Combining multiple git repositories Aristotle Pagaltzis 2008-11-10T05:33:40Z 2008-11-10T05:33:40Z Uh, it’s a third-party tool, not part of git… :-) http://stackoverflow.com/questions/277043/how-can-i-catch-and-handle-a-signal-in-perl/277050#277050 Comment by Aristotle Pagaltzis on How can I catch and handle a signal in Perl? Aristotle Pagaltzis 2008-11-10T05:23:33Z 2008-11-10T05:23:33Z No, it does not. http://stackoverflow.com/questions/237408/pushing-an-existing-git-repository-to-github-only-sends-about-half-the-commits/276409#276409 Comment by Aristotle Pagaltzis on Pushing an existing Git repository to Github only sends about half the commits? Aristotle Pagaltzis 2008-11-10T00:27:04Z 2008-11-10T00:27:04Z This approach is fine if you want to be cautious; if you <i>know</i> that the merge is going to fast-forward, then you can just delete and recreate the branch. See my answer. http://stackoverflow.com/questions/258251/how-do-i-inherit-subroutines-in-perl-with-use-base/258439#258439 Comment by Aristotle Pagaltzis on How do I inherit subroutines in Perl with 'use base'? Aristotle Pagaltzis 2008-11-03T18:10:33Z 2008-11-03T18:10:33Z Yes, better predictability of what will happen. base.pm conflates a bunch of behaviours and tries to guess in some rare circumstances. You are unlikely to run into the problems this can cause, but when you do, it bites. parent.pm does not fail mysteriously. http://stackoverflow.com/questions/257065/is-there-a-way-to-add-a-specific-version-of-a-file-to-the-git-index/257976#257976 Comment by Aristotle Pagaltzis on Is there a way to add a specific version of a file to the git index? Aristotle Pagaltzis 2008-11-03T12:09:17Z 2008-11-03T12:09:17Z Thanks! That’s exactly what I was looking for. I disagree about the GUI being easier, though. :-) More discoverable, perhaps. http://stackoverflow.com/questions/258251/how-do-i-inherit-subroutines-in-perl-with-use-base/258308#258308 Comment by Aristotle Pagaltzis on How do I inherit subroutines in Perl with 'use base'? Aristotle Pagaltzis 2008-11-03T11:57:58Z 2008-11-03T11:57:58Z No, it doesn’t end up called like that – it will look up the inheritance hierarchy so may call a sub in a completely different package. Also, your examples are not valid syntax. (I know what you were trying to say, but how you said it is bound to confuse someone as confused as the OP even further.) http://stackoverflow.com/questions/251694/how-can-i-check-if-i-have-a-perl-module-before-using-it/251786#251786 Comment by Aristotle Pagaltzis on How can I check if I have a Perl module before using it? Aristotle Pagaltzis 2008-11-02T15:31:05Z 2008-11-02T15:31:05Z Avoid relying on $@ as much as possible. F.ex., some modules could set $@ as a side effect while being loaded without actually throwing an exception. The better option is to rely on the fact that <code>eval</code> will return undef when an exception was caught, ie. <code>if ( eval &quot;use Term::ReadKey&quot; ) { ... }</code>. http://stackoverflow.com/questions/255114/how-do-i-store-a-duplicate-value-from-an-array-or-hash-in-perl/255191#255191 Comment by Aristotle Pagaltzis on How do I store a duplicate value from an array or hash in Perl? Aristotle Pagaltzis 2008-11-02T04:04:33Z 2008-11-02T04:04:33Z Write <code>$h{$&#95;}++ for @a;</code> instead of using <code>map</code> in void context. http://stackoverflow.com/questions/241579/what-is-the-easiest-or-most-effective-way-to-convert-months-abbreviation-to-a-nu/241841#241841 Comment by Aristotle Pagaltzis on What is the easiest or most effective way to convert month's abbreviation to a number in Perl? (ie "jan" to 1) Aristotle Pagaltzis 2008-11-01T05:52:06Z 2008-11-01T05:52:06Z Yes. It’s just easy to imagine that they could be even simpler to write somehow, considering how trivial the goal is. Measured against it, all my solutions feel disproportionately complicated, even though on an absolute scale they are pretty trivial.