• Mac OS X,  Programming,  Unix

    Mac DevOps Conference

    There’s another new conference in town! Well, not my town, but Vancouver. MacDev Ops is a hot topic. One that will only increase in the coming years. Thanks to Mat X and Brian Warsing for bringing about a brilliant conference. The conference will be held on June 19, 2015 and is an easy $99 if you sign up soon. Also, submit a talk if DevOps is your thing. They’re looking to bring the following topics to the table: Puppet, Chef and other automation from Desktop to Cloud and back Software deployment with Munki and AutoPkg: the app ecosystem surrounding it Cool tools: demo of awesome Mac Admin projects from GitHub DevOps: How…

  • Mac OS X

    Git on Mac OS X

    The latest Git works swimmingly on the Mac. To download it you can curl it from the repository: curl http://kernel.org/pub/software/scm/git/git-1.6.5.3.tar.gz -O Next, extract the files: tar xzvf git-1.6.5.3.tar.gz Once extracted, cd into the directory that you extracted the files into and then run a make configure with the git-1.6.5.3 directory as your working directory. make configure If you cannot run make becuase you don’t have a compiler, make sure that you have installed the developer tools on your computer. Once you have run the make, run the configure, specifying the directory you would like to install into. In this case I’ll be deploying into /usr/local/git: ./configure –prefix=/usr/local/git NO_MSGFMT=yes make prefix=/usr/local/git…