User Pat Notz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T10:09:18Z http://stackoverflow.com/feeds/user/825 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1784762/creating-a-git-repo-on-my-server/1785172#1785172 2 Answer by Pat Notz for Creating a git repo on my server Pat Notz 2009-11-23T18:49:19Z 2009-11-23T18:49:19Z <p>There are no commits and, hence, no refs on your sever's repository. So, there's nothing to clone.</p> http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1781442#1781442 3 Answer by Pat Notz for Remotely Track the Current Branch in Git Pat Notz 2009-11-23T06:35:36Z 2009-11-23T06:35:36Z <p>Another option is to write a <a href="http://www.kernel.org/pub/software/scm/git/docs/githooks.html" rel="nofollow">hook</a> that notifies the test server of new code to pull. In particular, a <code>post-commit</code> hook is probably a better route. Then, every time you commit you can inform the test server of what to pull and from which branch.</p> http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1781405#1781405 1 Answer by Pat Notz for Remotely Track the Current Branch in Git Pat Notz 2009-11-23T06:19:52Z 2009-11-23T06:19:52Z <p>This isn't the greatest solution but it's something...</p> <p>The test server can run <code>git remote show origin</code> to see which branch is currently active on your laptop. E.g., </p> <pre> $ git remote show origin * remote origin Fetch URL: blade:/var/scratch/code Push URL: blade:/var/scratch/code HEAD branch: foo Remote branches: foo tracked bar tracked qux tracked </pre> <p>So, the origin repository is currently on the <code>foo</code> branch.</p> <p>I haven't seen a low level command that will give you that directly so you may have to parse it out from this (perhaps someone will have a better way). Example,</p> <pre> $ b=$(git remote show origin | grep "HEAD branch" | awk -F: '{print $2}') $ echo $b foo </pre> <p>Now, since <code>origin/foo</code> will act similar to <code>origin/HEAD</code> (no local branch) and your CruiseControl doesn't like that you should probably just create a local branch on the testing machine and simply hard-reset it to the latest location:</p> <pre> $ b=$(git remote show origin | grep "HEAD branch" | awk -F: '{print $2}') $ git reset --hard origin/$b </pre> <p>Note, this is slightly fragile since <code>HEAD</code> me not always be what you think it is. For example, during a rebase <code>HEAD</code> will be moving backward and forward. If your testing server checks <code>HEAD</code> on your laptop during a rebase it could get some invalid or undesired location.</p> http://stackoverflow.com/questions/1741143/git-git-pull-origin-mybranch-leaves-local-mybranch-n-commits-ahead-of-origin/1742420#1742420 1 Answer by Pat Notz for [git] 'git pull origin mybranch' leaves local mybranch N commits ahead of origin. Why? Pat Notz 2009-11-16T14:14:15Z 2009-11-16T14:14:15Z <p>Are you careful to add all of your remote (except <code>origin</code> which comes with your original clone) using <code>git remote add NAME URL</code>? I've seen this bug when they've just been added to the git config.</p> http://stackoverflow.com/questions/520650/how-do-you-make-an-existing-git-branch-track-a-remote-branch 4 How do you make an existing git branch track a remote branch? Pat Notz 2009-02-06T15:14:04Z 2009-11-12T23:31:29Z <p>I know how to make a new branch that tracks remote branches. But how do I make an existing branch track a remote branch. I know I can just edit the .git/config file but it seems there should be an easier way.</p> <p><strong>EDIT</strong> It looks like this can't currently be done in a convenient way with the current (1.6.1.x) version of Git.</p> http://stackoverflow.com/questions/1704360/git-hook-take-action-when-a-branch-is-advanced/1704665#1704665 2 Answer by Pat Notz for Git Hook: Take action when a branch is advanced Pat Notz 2009-11-09T23:25:56Z 2009-11-09T23:25:56Z <p>If changes are coming in via a <code>push</code> to a remote, then on the remote server you'll want to use the <code>post-receive</code> hook (though if you use <code>pre-receive</code> then you can reject the push if, say, latex fails).</p> <p>If you're using your local repository you should use <code>post-commit</code> (or <code>pre-commit</code> if you want to be able to reject the commit).</p> <p>The hooks are documented in the <a href="http://www.kernel.org/pub/software/scm/git/docs/githooks.html" rel="nofollow">git hooks</a> man page.</p> http://stackoverflow.com/questions/1700167/git-checkout-remote-branch-on-unborn-local-branch/1700294#1700294 2 Answer by Pat Notz for Git checkout remote branch on unborn local branch Pat Notz 2009-11-09T10:45:46Z 2009-11-09T10:45:46Z <p>I assume that <code>origin</code>'s active/default branch isn't <code>mybranch</code> which is why a plain clone won't work. It might also be easier to just do this:</p> <pre><code>git clone -n git+ssh://user@host:22/var/www/vhosts/build newbuild cd newbuild git checkout -b origin/mybranch </code></pre> http://stackoverflow.com/questions/1692452/how-to-switch-branches-with-git-and-get-ignored-files-removed/1693141#1693141 1 Answer by Pat Notz for How to switch branches with git and get ignored files removed? Pat Notz 2009-11-07T14:11:47Z 2009-11-07T14:11:47Z <p>Git intentionally makes it hard to lose data by accident. For example, what if there were source files that you forgot to <code>git add</code>? There is a <a href="http://kernel.org/pub/software/scm/git-core/docs/git-clean.html" rel="nofollow">git clean</a> command to help you clean up your working copy. Passing the <code>-x</code> flag causes it to also remove files normally ignored by <code>.gitignore</code>. E.g.,</p> <pre><code>git clean -f -x </code></pre> <p>If you want more control, you can pass the <code>--dry-run</code> flag to get the list of files and then you could write some shell script to look for certain kinds of files (e.g., *.log).</p> <p>Then, you could install this script as a post-checkout script (see <a href="http://www.kernel.org/pub/software/scm/git/docs/githooks.html" rel="nofollow">git-hooks</a> for examples).</p> http://stackoverflow.com/questions/1662205/how-to-make-a-git-repository-read-only/1662370#1662370 1 Answer by Pat Notz for How to make a git repository read-only? Pat Notz 2009-11-02T16:44:03Z 2009-11-02T16:44:03Z <pre><code>chmod -R a-w /path/to/repo.git </code></pre> http://stackoverflow.com/questions/1657017/git-squash-all-commits-into-a-single-commit/1657287#1657287 3 Answer by Pat Notz for Git squash all commits into a single commit Pat Notz 2009-11-01T14:23:33Z 2009-11-01T14:23:33Z <p>Perhaps the easiest way is to just create a new repository with current state of the working copy. If you want to keep all the commit messages you could first do <code>git log &gt; original.log</code> and then edit that for your initial commit message in the new repository:</p> <pre><code>rm -rf .git git init git add . git commit </code></pre> <p>or</p> <pre><code>git log &gt; original.log # edit original.log as desired rm -rf .git git init git add . git commit -F original.log </code></pre> http://stackoverflow.com/questions/1655116/search-git-history-for-a-change-in-a-merge-commit/1655364#1655364 2 Answer by Pat Notz for Search git history for a change in a merge commit Pat Notz 2009-10-31T19:32:40Z 2009-10-31T19:32:40Z <p>Since some Git commands are built on top of other ("plumbing") commands they often inherit options from other commands. I agree that it's annoying not to see those documented in the man pages or in the <code>--help</code> output. In this case, the <a href="http://ftp.kernel.org/pub/software/scm/git/docs/git-log.html" rel="nofollow">git-log</a> help states:</p> <blockquote> <p>The command takes options applicable to the git-rev-list command to control what is shown and how, and options applicable to the git-diff-* commands to control how the changes each commit introduces are shown.</p> </blockquote> <p>In this case, you'll find the <code>-m</code> option under <a href="http://www.kernel.org/pub/software/scm/git/docs/git-diff-tree.html" rel="nofollow">git-diff-tree</a>:</p> <pre> ... -m By default, git-diff-tree --stdin does not show differences for merge commits. With this flag, it shows differences to that commit from all of its parents. See also -c. ... </pre> http://stackoverflow.com/questions/142331/resources-for-high-performance-computing-in-c/142901#142901 1 Answer by Pat Notz for Resources for high performance computing in C++ Pat Notz 2008-09-27T03:36:24Z 2009-10-23T15:39:10Z <p>Despite being 14+ years old, the pioneering work of <a href="http://ubiety.uwaterloo.ca/~tveldhui/papers/Expression-Templates/exprtmpl.html" rel="nofollow">Expression Templates</a> is still regarded as some of the most exceptional C++ work in years. Fast, efficient, safe... I've used the techniques and they're really remarkable. </p> <p><strong>Edit:</strong> In case the above link remains broken, here's an <a href="http://www.ddj.com/cpp/184401627" rel="nofollow">alternate reference for Expression Templates</a>. This DDJ article cites the original work of Veldhuizen.</p> http://stackoverflow.com/questions/142331/resources-for-high-performance-computing-in-c/142896#142896 1 Answer by Pat Notz for Resources for high performance computing in C++ Pat Notz 2008-09-27T03:34:05Z 2009-10-23T15:34:29Z <p>The <a href="http://trilinos.sandia.gov/" rel="nofollow">Trilinos</a> suite of libraries and packages offer a broad range of middleware libraries for HPC including sparse, iterative linear solvers; nonlinear solvers; eigen solvers; ODE &amp; DAE integrators including sensitivity analysis; optimization (both invasive and black box); finite element interfaces; mesh interfaces; preconditioners; etc. All of these packages are designed using fairly modern C++ techniques (there are Python APIs as well as some C and Fortran). There used in very large scale parallel (5000+ CPUs) simulations of exceptional consequence (nuclear weapon design) with great success. These packages offer a great suite of capabilities that are much higher level than BLAS, etc. </p> http://stackoverflow.com/questions/1572190/preserve-git-remotes/1572699#1572699 1 Answer by Pat Notz for Preserve git remotes. Pat Notz 2009-10-15T14:25:09Z 2009-10-15T14:25:09Z <p>You could define them in your global config file <code>~/.gitconfig</code> instead of your project's <code>.git/config</code>. Be careful though... if you run <code>git remote update</code> in a project it will pull down <strong>all</strong> remotes, even for repositories completely unrelated to the one you're working on.</p> http://stackoverflow.com/questions/1528513/git-find-deleted-code/1528644#1528644 0 Answer by Pat Notz for Git: Find deleted code Pat Notz 2009-10-06T23:27:07Z 2009-10-06T23:27:07Z <p>Hmph, works for me:</p> <pre> $ git init Initialized empty Git repository in /Users/pknotz/foo/.git/ $ echo "Hello" > a $ git add a $ git commit -am "initial commit" [master (root-commit) 7e52a51] initial commit 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 a $ echo " World" >> a $ git commit -am "Be more specific" [master 080e9fe] Be more specific 1 files changed, 1 insertions(+), 0 deletions(-) $ echo "Hello" > a $ git commit -am "Be less specific" [master 00f3fd0] Be less specific 1 files changed, 0 insertions(+), 1 deletions(-) $ cat a Hello $ git log -SWorld commit 00f3fd0134d0d54aafbb9d959666efc5fd492b4f Author: Pat Notz &lt;patnotz@gmail.com&gt; Date: Tue Oct 6 17:20:48 2009 -0600 Be less specific commit 080e9fe84ff89aab9d9d51fb5d8d59e8f663ee7f Author: Pat Notz &lt;patnotz@gmail.com&gt; Date: Tue Oct 6 17:20:33 2009 -0600 Be more specific </pre> <p>Or, is this not what you mean?</p> http://stackoverflow.com/questions/540535/managing-large-binary-files-with-git/541490#541490 6 Answer by Pat Notz for Managing large binary files with git Pat Notz 2009-02-12T14:29:01Z 2009-10-06T17:01:45Z <p>If the program won't work without the files it seems like splitting them into a separate repo is a bad idea. We have large test suites that we break into a separate repo but those are truly "auxiliary" files.</p> <p>However, you may be able to manage the files in a separate repo and then use <a href="http://www.kernel.org/pub/software/scm/git/docs/git-submodule.html" rel="nofollow"><code>git-submodule</code></a> to pull them into your project in a sane way. So, you'd still have the full history of all your source but, as I understand it, you'd only have the one relevant revision of your images submodule. The <code>git-submodule</code> facility should help you keep the correct version of the code in line with the correct version of the images.</p> <p>Here's a good <a href="http://book.git-scm.com/5%5Fsubmodules.html" rel="nofollow">introduction to submodules</a> from Git Book.</p> http://stackoverflow.com/questions/297085/is-there-a-graphical-test-runner-for-google-test-gtest-for-windows/1500280#1500280 1 Answer by Pat Notz for Is there a graphical test runner for "Google Test" ( gtest ) for windows? Pat Notz 2009-09-30T19:46:14Z 2009-09-30T19:46:14Z <p>Industrial Logic has an Eclipse plugin for running and displaying results from gtest. The update site is <a href="http://industriallogic.com/update/" rel="nofollow">http://industriallogic.com/update/</a></p> http://stackoverflow.com/questions/1486819/which-git-commit-stats-are-easy-to-pull/1487540#1487540 2 Answer by Pat Notz for Which Git commit stats are easy to pull Pat Notz 2009-09-28T15:01:35Z 2009-09-28T15:01:35Z <p>Actually, git already has a command for this:</p> <pre><code>git shortlog </code></pre> <p>in your case, it sounds like you're interested in this form:</p> <pre><code>git shortlog -sne </code></pre> <p>See the <code>--help</code> for various options.</p> <p>You may also be interested in the <a href="http://gitstats.sourceforge.net/" rel="nofollow">GitStats project</a>. They have a few examples, including the <a href="http://gitstats.sourceforge.net/examples/git/" rel="nofollow">stats for the Git project</a>. From the GitStat main page:</p> <p>Here is a list of some statistics generated currently:</p> <ul> <li>General statistics: total files, lines, commits, authors.</li> <li>Activity: commits by hour of day, day of week, hour of week, month of year, year and month, and year.</li> <li>Authors: list of authors (name, commits (%), first commit date, last commit date, age), author of month, author of year.</li> <li>Files: file count by date, extensions</li> <li>Lines: Lines of Code by date</li> </ul> http://stackoverflow.com/questions/1416585/can-you-share-a-file-and-its-history-between-two-git-repositories/1416818#1416818 2 Answer by Pat Notz for Can you share a file and it's history between two git repositories? Pat Notz 2009-09-13T04:07:52Z 2009-09-13T04:07:52Z <p>Along with git submodules, subtree merging is another approach to doing this. You can read a nice write-up in the <a href="http://progit.org/" rel="nofollow">Pro Git</a> book (free <a href="http://progit.org/book/ch6-7.html" rel="nofollow">online</a>); there's also an <a href="http://www.kernel.org/pub/software/scm/git/docs/howto/using-merge-subtree.html" rel="nofollow">official howto</a>.</p> <p>Avery Pennarun has written a specialized Git tool called git-subtree to handle git subtree merging more gracefully. You can <a href="http://alumnit.ca/~apenwarr/log/?m=200904#30" rel="nofollow">read about it in his blog</a> and you can find the code on <a href="http://github.com/apenwarr/git-subtree/" rel="nofollow">github</a>. From his post:</p> <blockquote> <p>Note that, unlike git submodule, git subtree doesn't change the way people using your project need to work. As far as they're concerned, it's just one big project; nobody has to run (or install) git subtree unless they want to. It can just be the responsibility of a single person to extract the subproject history and upload it to the subproject repository, if you want.</p> </blockquote> http://stackoverflow.com/questions/1402968/git-merge-confusion-diff-shows-differences-and-merge-says-there-are-none/1408064#1408064 1 Answer by Pat Notz for Git merge confusion. Diff shows differences, and merge says there are none Pat Notz 2009-09-10T22:29:52Z 2009-09-11T04:12:39Z <p>It's possible that there's nothing new to merge but the your branch has changes not in master. Such differences would also be reflected in commits so a simple check you can do is to check the logs:</p> <pre><code># See what's in my branch but not master git log master..jacob@379 # See what's in master but not my branch git log jacob@379..master </code></pre> <p>I'm guessing you'll see some commits there. Imagine it this way:</p> <pre> o---o---A---B---C master \ \ ----D---E---F jacob@379 </pre> <p>In this case there's nothing new to merge into <code>jacob@379</code> but the two branches are still quite clearly different.</p> <p>A quick look at <code>gitk --all</code> would probably be really useful here.</p> http://stackoverflow.com/questions/1392925/how-to-mirror-one-one-git-remote-to-another-with-push/1394657#1394657 2 Answer by Pat Notz for How to mirror one one git remote to another with push Pat Notz 2009-09-08T15:28:49Z 2009-09-08T15:28:49Z <p>I think you're looking for the <code>--mirror</code> option to push:</p> <pre><code>git push --mirror github </code></pre> <p>This will push all refs (branches and tags) including non-fast-forward updates. I use this for creating backups of my local repository.</p> <p>The <a href="http://www.kernel.org/pub/software/scm/git/docs/git-push.html" rel="nofollow">man page</a> describes it like this:</p> <blockquote> <p>Instead of naming each ref to push, specifies that all refs under <code>$GIT_DIR/refs/</code> (which includes but is not limited to <code>refs/heads/</code>, <code>refs/remotes/</code>, and <code>refs/tags/</code>) be mirrored to the remote repository. Newly created local refs will be pushed to the remote end, locally updated refs will be force updated on the remote end, and deleted refs will be removed from the remote end. This is the default if the configuration option <code>remote.&lt;remote&gt;.mirror</code> is set.</p> </blockquote> <p>[OT: I use CDT in my everyday work and I love it!]</p> http://stackoverflow.com/questions/1391732/git-says-everything-up-to-date-when-pushing-changes-to-a-remote-branch/1391781#1391781 6 Answer by Pat Notz for git says everything-up-to-date when pushing changes to a remote branch Pat Notz 2009-09-08T03:17:23Z 2009-09-08T03:17:23Z <p>Depending on your version of Git, it may be trying to push branches with matching names, i.e., <code>master</code> to <code>origin/master</code> and <code>remote_branch</code> to <code>origin/remote_branch</code>. If your origin repository doesn't have a branch named <code>mybranch</code> then it thinks there's nothing to update.</p> <p>To override this default, you can explicitly tell git which branch to use as the source (<code>mybranch</code>) and which to use as the destination on the remote repository (<code>remote_branch</code>):</p> <pre><code>git push origin mybranch:remote_branch </code></pre> <p>There's a config option to tell git to push to remote tracking branches by default:</p> <pre><code>git config --global push.default tracking </code></pre> <p>I find this more intuitive and I think it's the behavior you're looking for. Checkout the <code>push.default</code> option in the <a href="http://www.kernel.org/pub/software/scm/git/docs/git-config.html" rel="nofollow">git config man page</a>. Also checkout the Examples section in the <a href="http://www.kernel.org/pub/software/scm/git/docs/git-push.html" rel="nofollow">git push man page</a> to see how to override the default behavior.</p> http://stackoverflow.com/questions/866185/where-can-i-find-a-tutorial-on-gits-internals/1335950#1335950 2 Answer by Pat Notz for Where can I find a tutorial on Git's internals? Pat Notz 2009-08-26T16:25:20Z 2009-08-26T16:25:20Z <p>In addition to the free <a href="http://www.newartisans.com/2008/04/git-from-the-bottom-up.html" rel="nofollow">Git from the bottom up</a> tutorial I highly recommend the <a href="http://peepcode.com/products/git-internals-pdf" rel="nofollow">Git Internals PDF</a> (US$9).</p> http://stackoverflow.com/questions/1294085/how-does-one-clone-a-git-repository-with-only-a-non-master-branch/1294968#1294968 1 Answer by Pat Notz for How does one clone a git repository with only a non-master branch? Pat Notz 2009-08-18T16:22:42Z 2009-08-18T16:22:42Z <p>Your question title and summary are kind of asking two different questions because, as Bombe noted, a clone always gets all content unless use use the <code>--depth</code> option.</p> <p>I'm not sure what you <strong>really</strong> want but another option is to clone with the <code>--no-checkout</code> (or <code>-n</code>) flag. By default, <code>git</code> will checkout the default branch for the repository (which is determined by the <code>HEAD</code> ref in the remote repository -- it's not always <code>master</code>). If you use the <code>-n</code> flag <code>git</code> will not checkout a branch for you so you can just checkout what you want:</p> <pre><code>git clone -n &lt;some url&gt; foo cd foo git checkout &lt;some branch&gt; </code></pre> http://stackoverflow.com/questions/1288480/git-how-do-i-merge-between-branches-while-keeping-some-changesets-exclusive-to-o/1290080#1290080 0 Answer by Pat Notz for git: how do I merge between branches while keeping some changesets exclusive to one branch? Pat Notz 2009-08-17T19:58:21Z 2009-08-17T19:58:21Z <p>I would do an interactive rebase against master and move your path-name-fixup-commit to the end. Then, you can merge up to the that point. Just keep moving your special commit to the end.</p> <p>You may also find the stash useful. Instead of actually committing the path name fixups you could stash them away. If try this approach you may want to check out the question on <a href="http://stackoverflow.com/questions/1020132">How to reverse apply a stash</a>.</p> http://stackoverflow.com/questions/1286183/git-find-fat-commit/1290046#1290046 0 Answer by Pat Notz for git find fat commit Pat Notz 2009-08-17T19:51:28Z 2009-08-17T19:51:28Z <p>You could do this:</p> <pre><code>git ls-tree -r -t --full-name HEAD | sort -n -k 4 </code></pre> <p>This will show the largest files at the bottom (fourth column is the file (blob) size.</p> <p>If you need to look at different branches you'll want to change HEAD to those branch names. Or, put this in a loop over the branches, tags, or revs you are interested in.</p> http://stackoverflow.com/questions/1283914/git-without-git-folder-a-remote-git-dir/1285873#1285873 1 Answer by Pat Notz for git without .git folder -- a remote git-dir Pat Notz 2009-08-17T01:54:22Z 2009-08-17T01:54:22Z <p>Like the others have noted, Git is not written to work this way. However, I think you could have your .git directory on a network mount. Perhaps you could mount the remote server as a file system like NFS or <a href="http://fuse.sourceforge.net/sshfs.html" rel="nofollow">sshfs</a>. That's not as general as you may like but it could possibly work for some situations.</p> http://stackoverflow.com/questions/1221074/distributed-development-with-git/1223500#1223500 2 Answer by Pat Notz for Distributed development with Git Pat Notz 2009-08-03T17:16:20Z 2009-08-03T17:16:20Z <p><a href="http://github.com/" rel="nofollow">GitHub</a> is a free service you can use to host your repositories and they make it very easy to work between developers (in addition to other features such as wiki hosting). Also, they've got a great set of <a href="http://github.com/guides/home" rel="nofollow">guides</a> for getting started. I'd start there if I were you.</p> http://stackoverflow.com/questions/1199312/number-of-commits-in-a-git-repository/1200930#1200930 2 Answer by Pat Notz for Number of commits in a git repository Pat Notz 2009-07-29T15:02:47Z 2009-07-29T15:02:47Z <p>Others have already posted the easiest answers but here are a couple of options that might also be of interest.</p> <p><a href="http://www.gnome.org/~newren/eg/" rel="nofollow">Easy Git</a> is a simple, light-weight wrapper (single file perl script) for Git. One nice feature that it adds to Git is an "info" command (run: <code>eg info</code>) that gives some nice info about your repository, including the number of commits, files, directories, contributors and largest file.</p> <p><a href="http://gitstats.sourceforge.net/" rel="nofollow">GitStats</a> is another tool that gives you all kinds of nice plots of statistics about your repository. Checkout their <a href="http://gitstats.sourceforge.net/examples/" rel="nofollow">examples</a>, e.g., <a href="http://gitstats.sourceforge.net/examples/git/" rel="nofollow">an analysis of the git project</a>.</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/107847#107847 101 Answer by Pat Notz for What's your favorite "programmer" cartoon? Pat Notz 2008-09-20T10:32:22Z 2009-07-20T17:37:22Z <p><a href="http://xkcd.com/356" rel="nofollow"> <img src="http://imgs.xkcd.com/comics/nerd_sniping.png" title="I first saw this problem on the Google Labs Aptitude Test. A professor and I filled a blackboard without getting anywhere. Have fun."> </a></p> http://stackoverflow.com/questions/1781028/how-do-i-put-a-vector-inside-of-a-struct-in-go/1781124#1781124 Comment by Pat Notz on How do I put a vector inside of a struct in Go? Pat Notz 2009-12-01T04:17:53Z 2009-12-01T04:17:53Z I think in place of <code>vector.New()</code> you now use <code>new(vector.Vector)</code> http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1781582#1781582 Comment by Pat Notz on Remotely Track the Current Branch in Git Pat Notz 2009-11-23T15:08:51Z 2009-11-23T15:08:51Z That's the kind of thing you could do within your <code>post-commit</code> hook. You just need to be careful to not overwrite code that's being actively built or tested. http://stackoverflow.com/questions/1734405/synchronizing-git-repos-across-machines-without-push Comment by Pat Notz on Synchronizing Git repos across machines without push Pat Notz 2009-11-14T15:11:55Z 2009-11-14T15:11:55Z You're close. You want <code>merge = refs/heads/master</code> in the configuration for the master branch. Or, use 'git pull machine2 master' http://stackoverflow.com/questions/1717278/git-hooks-and-how-they-work/1717473#1717473 Comment by Pat Notz on git hooks and how they work Pat Notz 2009-11-11T19:40:09Z 2009-11-11T19:40:09Z +1 Hooks are not version controlled and are not shared between repositories. Mainly this is for security reasons -- it's one thing to let someone push code into your repo, it's another to let them <b>run</b> code on your sever. Also, it often doesn't make sense for everyone to have the same hooks -- platforms may be different, paths may be different, the servers may have different purposes (staging, CI, deployment, QA, etc.). http://stackoverflow.com/questions/142331/resources-for-high-performance-computing-in-c/142901#142901 Comment by Pat Notz on Resources for high performance computing in C++ Pat Notz 2009-10-23T15:39:51Z 2009-10-23T15:39:51Z Thanks Tom. Hopefully the DDJ article is helpful. http://stackoverflow.com/questions/1392925/how-to-mirror-one-one-git-remote-to-another-with-push/1394657#1394657 Comment by Pat Notz on How to mirror one one git remote to another with push Pat Notz 2009-09-14T17:57:55Z 2009-09-14T17:57:55Z Ahh, I see now. Sorry for the dead end. http://stackoverflow.com/questions/1295035/after-apparently-successful-git-push-the-file-are-not-on-the-target/1296658#1296658 Comment by Pat Notz on After apparently successful git push, the file are not on the target Pat Notz 2009-08-18T22:42:14Z 2009-08-18T22:42:14Z From the link: &quot;A quick rule of thumb is to never push into a repository that has a work tree attached to it, until you know what you are doing.&quot; http://stackoverflow.com/questions/1288480/git-how-do-i-merge-between-branches-while-keeping-some-changesets-exclusive-to-o/1290468#1290468 Comment by Pat Notz on git: how do I merge between branches while keeping some changesets exclusive to one branch? Pat Notz 2009-08-17T22:25:07Z 2009-08-17T22:25:07Z Sounds like the real answer is to fix the code. Extract the hard coded paths into a config file which can be overridden with a local config file. Track a default config file but not the local config file or something along those lines. http://stackoverflow.com/questions/1286183/git-find-fat-commit/1286564#1286564 Comment by Pat Notz on git find fat commit Pat Notz 2009-08-17T19:39:42Z 2009-08-17T19:39:42Z The --log-size option only tells you how big the log message is -- not the size of files committed. http://stackoverflow.com/questions/1283914/git-without-git-folder-a-remote-git-dir/1285587#1285587 Comment by Pat Notz on git without .git folder -- a remote git-dir Pat Notz 2009-08-17T01:52:01Z 2009-08-17T01:52:01Z It's not that unreasonable. One area where Git struggles is with lots of very large files with lots of history changes. That is, where the .git/ directory is VERY large -- much larger (possibly) than the working copy. For example, .git may not fit on a laptop hard drive but the working copy might. Also, the poster never mentioned sharing that remote repository (which would be a problem) http://stackoverflow.com/questions/1221074/distributed-development-with-git/1223533#1223533 Comment by Pat Notz on Distributed development with Git Pat Notz 2009-08-04T03:51:14Z 2009-08-04T03:51:14Z +1 Excellent reference. http://stackoverflow.com/questions/1122210/can-i-modify-git-adds-hunk-size/1122215#1122215 Comment by Pat Notz on Can I modify git-add's hunk size? Pat Notz 2009-07-14T13:12:42Z 2009-07-14T13:12:42Z If you <i>really</i> need control try 'e' to edit the patch directly. This way you can even change the patch contents (not just select parts of the patch). http://stackoverflow.com/questions/1105253/how-would-i-extract-a-single-file-or-changes-to-a-file-from-a-git-stash/1105666#1105666 Comment by Pat Notz on How would I extract a single file (or changes to a file) from a git stash? Pat Notz 2009-07-09T20:56:15Z 2009-07-09T20:56:15Z This is pretty cool... I didn't <i>really</i> understand how stash worked until I read your answer (which lead me to the git-checkout addition). I really didn't get that, when you do a stash, git saves TWO commits -- one for the state of the index and one for the state of the working copy which is a merge between the index and the original HEAD. This explains the odd trees I've seen when I visualize the repository with &quot;gitk --all&quot; when stashes are present. http://stackoverflow.com/questions/1070496/having-a-hard-time-understanding-git-fetch/1071300#1071300 Comment by Pat Notz on Having a hard time understanding git-fetch Pat Notz 2009-07-02T04:09:56Z 2009-07-02T04:09:56Z Yes, &quot;git remote update&quot; is really handy, especially when you have multiple remotes. http://stackoverflow.com/questions/1020132/how-to-reverse-apply-a-stash/1021867#1021867 Comment by Pat Notz on How to reverse apply a stash? Pat Notz 2009-06-21T14:28:18Z 2009-06-21T14:28:18Z Awesome, thanks. Seems like this might be a nice feature for stash.