Andrew Ba Tran
November 18, 2015
See how others put together data visualization projects
To publish a blog or portfolio website
Git
GitHub
GitHub.com
GitHub Desktop
GitHub Desktop is the easiest way to get code on GitHub.com.
You won’t need to learn any command-line instructions, SSH keys, or complicated Git terminology.
All you’ll need is your Mac or Windows computer and a GitHub.com account.
The easiest way to get your project into GitHub Desktop is to drag the folder which contains your project files onto the main application screen.
If you are dragging in an existing Git repository, you can skip ahead and push your code to GitHub.com.
If the folder isn’t a Git repository yet, GitHub Desktop will prompt you to turn it into a repository.
Turning your project into a Git repository won’t delete or ruin the files in your folder—it will simply create some hidden files that allow Git to do its magic.
All Git repositories are based on commits—snapshots of your code at a point in time. You need to make at least one commit before you can push your code up to GitHub.com.
Navigate to the Changes tab and click Commit to create your first commit.
You’ll need to create a new commit every time you change files.
Creating a commit is like saving a file—you are telling Git that you’d like to remember this point in history.
Make as many commits as you like locally.
No one but you can see those commits until you push them to GitHub.com.
Click the “Publish” button in the upper-right corner and GitHub Desktop will ask you what kind of repository to create:
Public repository — Anyone can see a public repository, but you choose who can commit (make changes) to it. You can create as many public repositories as you want on GitHub.com for free.
Private repository — By default, only you can see a private repository. You choose who can see and commit to this repository by adding collaborators. Private repositories require a paid subscription on GitHub.com.
Now that you’ve published the repository, you have it in two places:
Local repository on your computer — You can work on this repository without an Internet connection using GitHub Desktop. This is where you edit files and make changes to your project.
Remote repository on GitHub.com — You can send people links to your repository on GitHub.com so they can see your code and use all of GitHub’s other features (like Issue management and Pull Requests).
Each time you make changes to your local repository, you’ll need to sync your changes (by clicking the button in the upper-right corner of GitHub Desktop) to make sure they show up online.
If you want to get some code from GitHub.com onto your computer or synchronize changes between multiple computers, you’ll need to either pull changes or clone a repository:
Pull changes — Click the “Sync” button in the upper-right corner of GitHub Desktop to bring code from an online repository (for example, changes that your co-worker pushed up) onto your computer.
Clone a repository — Click the “Clone in Desktop” button on GitHub.com to create a new copy of a repository on your computer.
It's a website generator.
Jekyll takes content written in Markdown, passes it through templates you've set up, and spits out a complete static website.
Meanwhile, GitHub Pages serves the website directly from your GitHub repository so you don't have to deal with hosting.
Markdown is a super simple way to add formatting like headers, bold, bulleted lists, and so on to plain text.
It was originally designed to be an easy alternative to HTML, and allows people to create web pages with no HTML experience—but it's also a great way to organize notes, to-do lists, and other things.
A simple way for non-programming types to write in an easy-to-read format that could be converted directly into HTML.