Our gitpt script to generate git commits from Pivotal Tracker stories has been tweaked and polished and is now part...
Git has a built-in repository viewer for your web browser. a bit similar (but less awesome) than github.
How to ignore new files Globally Add the path(s) to your file(s) which you would like to ignore...
tig path_to_file_or_files_or_path_with_wildcard
You can convert git commits into patch files. Those can be used to apply to a different repository [1] or...
Using git rebase can be painful but luckily you can resort to cheating with git reset and committing anew.
Sometimes you may need to figure out what branches exist on a remote repository so you can pull them down...
Random list of useful git commands for advanced users. I found some of them useful.
Grit gives you object oriented read/write access to Git repositories via Ruby.
If you want to use the (badly implemented!) solarized color scheme in your Rubymine IDE: Clone the IntelliJ IDEA port...
We usually generate our commit messages from Pivotal Tracker IDs and titles, like [#15775609] Index view for conflicts
Some folks have started to keep their linux configuration in a git repository called "dotfiles". This sounds like a good...
Sometimes, when running a rake task, RubyGems 1.8.5 raises an error: rake aborted! undefined method `specifications' for "/usr/lib/ruby/gems/1.8":String
Get "PuTTY Link" and "Pageant" (an SSH key agent) from the PuTTY download page. Run pageant.exe, find its icon inside...
When you do a git add . and have deleted files, git won’t stage them to be commited (as deleted...
Deprecated ways to execute shell code in Ruby This is just a reference for legacy code. For new code, always...
Since May 2011 we are cutting new gems using Bundler, which is less painful than cutting gems using Jeweler. You...
Make sure you understand differences between git's areas (such as stash, workspace, upstream, etc.) and what commands affect which...
We often have a separate production branch that lags a bit behind the more cutting edge main branch. Sometimes you...
You can seriously speed up deployments with Capistrano when using a local git repository on the server you are deploying...
To display a list of your current Git remotes and their endpoints, you can say git remote -v
One of the thornier problems in our workflow is knowing when assets are delivered from the designer and keeping them...
blueprint is DevStructure’s workhorse tool that looks inside popular package managers, finds changes you made to configuration files, and...
Merging .po-files with Git is painful. There have been attempts of making Git more clever when trying to merge...