├── .gitignore ├── README.md ├── logos ├── github_logo_social_coding_outlined.ai └── github_logo_social_coding_outlined.png ├── octocats ├── blacktocat-16.png ├── blacktocat-32.png ├── blacktocats.ai ├── octocat.ai ├── octocat.png ├── octocat_fluid.png └── octocat_gems.png ├── photos ├── .gitignore └── github_founders.jpg └── ribbons ├── forkme_dark_background.psd └── forkme_light_background.psd /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /logos/github_logo_social_coding_outlined.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/logos/github_logo_social_coding_outlined.ai -------------------------------------------------------------------------------- /logos/github_logo_social_coding_outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/logos/github_logo_social_coding_outlined.png -------------------------------------------------------------------------------- /octocats/blacktocat-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/octocats/blacktocat-16.png -------------------------------------------------------------------------------- /octocats/blacktocat-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/octocats/blacktocat-32.png -------------------------------------------------------------------------------- /octocats/blacktocats.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/octocats/blacktocats.ai -------------------------------------------------------------------------------- /octocats/octocat.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/octocats/octocat.ai -------------------------------------------------------------------------------- /octocats/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/octocats/octocat.png -------------------------------------------------------------------------------- /octocats/octocat_fluid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/octocats/octocat_fluid.png -------------------------------------------------------------------------------- /octocats/octocat_gems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/octocats/octocat_gems.png -------------------------------------------------------------------------------- /photos/.gitignore: -------------------------------------------------------------------------------- 1 | github_founders.psd 2 | -------------------------------------------------------------------------------- /photos/github_founders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/photos/github_founders.jpg -------------------------------------------------------------------------------- /ribbons/forkme_dark_background.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/ribbons/forkme_dark_background.psd -------------------------------------------------------------------------------- /ribbons/forkme_light_background.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/media/7a4bd8b61f6a19ee3b0ac918a51b82e05f8199b8/ribbons/forkme_light_background.psd --------------------------------------------------------------------------------