Plans & Pricing

Join today and collaborate with the smartest developers in the world.

$0/mo
Create a free account

Free for open source

Unlimited public repositories and unlimited public collaborators

$7/mo
Micro

  • 5 Private Repositories
  • Unlimited collaborators
  • Unlimited public repositories
Create an account

$12/mo
Small

  • 10 Private Repositories
  • Unlimited collaborators
  • Unlimited public repositories
Create an account

$22/mo
Medium

  • 20 Private Repositories
  • Unlimited collaborators
  • Unlimited public repositories
Create an account

Business Plans

$25/mo
Bronze

  • 10 Private Repositories
  • Unlimited teams
  • Unlimited public repositories
Create an organization

$50/mo
Silver

  • 20 Private Repositories
  • Unlimited teams
  • Unlimited public repositories
Create an organization

$100/mo
Gold

  • 50 Private Repositories
  • Unlimited teams
  • Unlimited public repositories
Create an organization

$200/mo
Platinum

  • 125 Private Repositories
  • Unlimited teams
  • Unlimited public repositories
Create an organization
Learn more about GitHub Enterprise

GitHub Enterprise

Learn more about running a GitHub instance inside your private network.

  • All plans come with…
  • Free setup
  • SSL Protection
  • Email support
  • Wikis, Issues, Downloads, Pages & more

Confused about which plan to choose?

Tell us how many projects you have and we'll let you know which plan would best fit your needs.

What if I need a larger plan?

If you need a plan larger than Platinum, contact us for details about our larger business plans. We also offer an installable version called GitHub Enterprise.

What’s different about an organization account?

A GitHub organization is a profile on GitHub that is managed from your personal account. Organizations are best suited for businesses who need to manage permissions for many employees. For more information, please read our Help article.

Why don’t I see any disk space limits?

Your GitHub account has no size limitations. Repositories perform best when kept under 1GB. For more information on repository sizes, please read our Help article.

What is a collaborator?

Collaborators are other GitHub users that you’ve given write access to one or more of your repositories.

Collaborators may fork any private repository you’ve added them to without their own paid plan. Their forks do not count against your private repository quota.

Questions? Concerns? Contact us day or night at support@github.com.

Markdown Cheat Sheet

Format Text

Headers

# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag

Text styles

*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__

*You **can** combine them*

Lists

Unordered

* Item 1
* Item 2
  * Item 2a
  * Item 2b

Ordered

1. Item 1
2. Item 2
3. Item 3
   * Item 3a
   * Item 3b

Miscellaneous

Images

![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)

Links

http://github.com - automatic!
[GitHub](http://github.com)

Blockquotes

As Kanye West said:

> We're living the future so
> the present is our past.

Code Examples in Markdown

Syntax highlighting with GFM

```javascript
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
```

Or, indent your code 4 spaces

Here is a Python code example
without syntax highlighting:

    def foo:
      if not bar:
        return true

Inline code for comments

I think you should use an
`<addr>` element here instead.
Something went wrong with that request. Please try again.