├── .gitignore ├── photos ├── .gitignore └── github_founders.jpg ├── octocats ├── octocat.ai ├── octocat.png ├── blacktocats.ai ├── octocat_gems.png ├── blacktocat-16.png ├── blacktocat-32.png └── octocat_fluid.png ├── ribbons ├── forkme_dark_background.psd └── forkme_light_background.psd ├── logos ├── github_logo_social_coding_outlined.ai └── github_logo_social_coding_outlined.png └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /photos/.gitignore: -------------------------------------------------------------------------------- 1 | github_founders.psd 2 | -------------------------------------------------------------------------------- /octocats/octocat.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/octocats/octocat.ai -------------------------------------------------------------------------------- /octocats/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/octocats/octocat.png -------------------------------------------------------------------------------- /octocats/blacktocats.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/octocats/blacktocats.ai -------------------------------------------------------------------------------- /octocats/octocat_gems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/octocats/octocat_gems.png -------------------------------------------------------------------------------- /octocats/blacktocat-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/octocats/blacktocat-16.png -------------------------------------------------------------------------------- /octocats/blacktocat-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/octocats/blacktocat-32.png -------------------------------------------------------------------------------- /octocats/octocat_fluid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/octocats/octocat_fluid.png -------------------------------------------------------------------------------- /photos/github_founders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/photos/github_founders.jpg -------------------------------------------------------------------------------- /ribbons/forkme_dark_background.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/ribbons/forkme_dark_background.psd -------------------------------------------------------------------------------- /ribbons/forkme_light_background.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/ribbons/forkme_light_background.psd -------------------------------------------------------------------------------- /logos/github_logo_social_coding_outlined.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/logos/github_logo_social_coding_outlined.ai -------------------------------------------------------------------------------- /logos/github_logo_social_coding_outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/HEAD/logos/github_logo_social_coding_outlined.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **NOTE: This repository is no longer supported or updated by GitHub. Please check out our official [Logos page](https://github.com/logos) to find official GitHub logos as well as our beloved Octocat, along with guidelines for how you can use them.** 2 | 3 | 4 | 5 | --------------------------------------------------------------------------------