The first thing to do with Git
When you install Git, the first thing you should be doing is setting up your user details.
Read more...Published 3 months ago in git
When you install Git, the first thing you should be doing is setting up your user details.
Read more...Published 3 months ago in git
You've probably heard a lot about how awesome Git is from all the cool people who are already using it. If you want to be part of the trendy crowd but feel tied down by your old Subversion repositories have no fear; Migrating all of those SVN repos to Git could not be easier and you get to keep the entire commit history of your project.
Read more...Published 3 months ago in git
You probably won't need to do this often (if ever at all) but just in case, here is how to delete a tag from a remote Git repository.
Read more...Published 4 months ago in git
You are busy programming away in the middle of a task and suddenly something urgent comes up. If you are awesome enough to be a Git user then you needn't fret, just use git stash.
Published 4 months ago in git
Here's the scenario: You're working in a feature branch that isn't quite ready for a full merge but you do have a few commits in there that you want to push to master (for a release or whatever reason). This is just one of possibly many situations where making use of Git's cherry-pick command might prove useful.
Published 4 months ago in git
Git has a number of awesome features; Not least of all is the ability to amend the previous commit. If you ever find that you accidentally left something out of your last commit, be it a file or an extra change to a file that you just committed, don't worry. It can easily be fixed ![]()
Published 9 months ago in git
Bored with just black and white in your git status? Add some colour!
Published about 1 year ago in general, git, ruby, web
A couple of weeks ago I deployed my first Rails app; The Claptrap site
.
Published about 1 year ago in git, linux, software
Are you using Git in Ubuntu and want to use an external visual diff viewer? It's easy! I will be using Meld for this example but most visual diff tools should be similar. If you don't already have Meld, then install it:
Read more...