Home

Backup Your Code and Develop Cross-Platform Using Git

I recently discovered Git and it changed everything.

I've recently been introduced to Git, the new most amazing thing in my development life. Git is a version control application for managing source code. Git can be used either on the command line or on a Git GUI client.

I highly recommend you use git to manage your code.

GitHub

If you've heard of Git, or even if you've just searched for it, you probably came across GitHub. It's exactly what it sounds like -- a place to store and share git repositories.

GitHub is a great community for open source projects, but it can get pricey if you don't want to share your code with the public community.

Free Alternatives

If your code needs to be private, there are plenty of free alternatives to GitHub. I mentioned a couple in this article.

Backup Your Code and Work Cross-Platform

The idea here is that you create a local repository and then push to a remote repository, hosted by the service you choose. This ensures you can pull the code down to a different machine if necessary, and it also makes it easy for others to view your code and help you.

If You Don't Know Git

Don't worry! It's ridiculously easy to learn. But I'm not going to teach you here because it's so well-documented on its site. Check it out here.

Let's Connect

Keep Reading

Free Alternatives to GitHub for Private Git Hosting

GitHub is super awesome, until you have to start paying for it. Check out two feature-full and FREE alternatives.

Jan 08, 2015

Learn Git in an Hour

Although I'm no expert, I've outlined the things I think you need to know to get started using Git.

Jul 04, 2013

Squash all Commits into a Single Commit

Sometimes it makes sense to start over in Git's history while maintaining the current state of your code.

Dec 09, 2014