Tag Archives: productivity tools

How to work with Git submodules and Git for Mac

As much as I love the new Github app (1.1.7) for Mac, it doesn’t work with submodules. This has been confirmed by Github’s tech support.

Hopefully they will graciously solve that problem soon. Until then, here is the workaround.

Posted in developer tools, open source, programming, web programming | Also tagged , , , | Leave a comment

How to push a particular branch to Heroku

This is just a shortcut to a command I found here: http://devcenter.heroku.com/articles/git This is my .git/config: 1234567891011121314151617[core]   repositoryformatversion = 0   filemode = true   bare = false   logallrefupdates = true   ignorecase = true [heroku]   account = personal [remote "heroku"]   url = git@heroku.personal:censo2010.git   fetch = +refs/heads/*:refs/remotes/heroku/* [remote "origin"]   [...]

Posted in developer tools, linux/unix world, programming, web programming | Also tagged , , , , , , , | Leave a comment

How to modify a Github Wiki in your local environment

It’s very simple. It’s just another Git repository to clone and start editing. For example: 123456[etagwerker@gesell ~]$ git clone git@github.com:ombushop/liquid-api.wiki.git [etagwerker@gesell ~]$ ls liquid-api.wiki/ Es-Liquid-para-programadores.textile        ¿Qué-es-Liquid?.md Es-liquid-para-diseñadores.textile     ¿Qué-puedo-hacer-en-Ombu-Shop-con-Liquid?.md Home.md                     ¿Qué-variables-me-provee-Ombu-Shop?.md Liquid:-Home.textile Start using your favorite editor and git commit! (To [...]

Posted in developer tools, open source, programming | Also tagged , | Leave a comment