Tag Archives: git

How to remove or edit a commit in your git repository

So you just committed 15 things to your git repository and now you want to push your changes. Oops, commit #2 added your password file. Or perhaps you misspelled words in the commit message. Now, being a git expert, you … Continue reading

Posted in Programming | Tagged , , | Comments Off on How to remove or edit a commit in your git repository

A few reasons braid is better than 40 lines of Rake.

I’ve been doing a lot of looking at the git subtree merge strategy for tracking remote projects. Ideally, our remote projects would be tracked with submodules. The issue is, we are developing our own libraries for use in our own … Continue reading

Posted in Software | Tagged , , , , | 3 Comments

Sharing git branches

I’ve been learning git lately. Here are a few tips for sharing branches I’ve collected during the past few weeks. Create a branch In git, branches are stored on your local machine. Even the commonly named “master”, is just a … Continue reading

Posted in Programming | Tagged , , , | 4 Comments