Skip to content

Marc Abramowitz

  • My software
    • Atari stuff
      • Pull-Down Menus
      • Red Squares
    • Wordly for iPhone
  • Writing

Tag: git

bash

Check for modifications in a bunch of locally cloned git repos

Today's random tech tip of the day - how to check whether you have modifications in a bunch of different locally cloned git repos: ❯ for x in *; do echo $x ; ( cd $x; git status -s ); done contentsvc jobsvc M supervisor.conf...
Marc 2014-08-14
Programming

Note to self: Don’t name my git branches “tests”

I have sometimes had a git branch called "tests" because I was adding tests or working on tests. The problem is that many projects have a "tests" directory so if you have a "test" branch, you get this: $ git diff tests fatal:...
Marc 2013-07-032013-07-03
General

Fix for oh-my-zsh git-svn prompt slowness

I was dying a slow death from the slowness of my zsh prompt when using oh-my-zsh's git plugin and a repository managed by git-svn. I finally decided to do something about it today. I tracked the slowness down to the...
Marc 2012-04-102012-04-10
ProgrammingPython

Patch for gitpoller accepted into Buildbot

I use Buildbot for a (Django) project at work. When we switched from svn to git, I had problems getting Buildbot to pull down the code from our private GitHub repo. Rather, I was getting this error: Failure:...
Marc 2011-09-302011-09-30
Theme: flowp by Alex Gurghis.
  • My software
    • Atari stuff
      • Pull-Down Menus
      • Red Squares
    • Wordly for iPhone
  • Writing