├── .gitignore ├── README.md ├── images ├── add-ssh.png ├── bootcamp_2_newrepo.jpg ├── bootcamp_2_repoinfo.png ├── bootcamp_3_fork.jpg ├── click-pull-request.png ├── dvcs-change.png ├── gdi_logo_badge.png ├── gitk.png ├── install-git.png ├── manage-my-pull-requests.png ├── no-vc.png ├── no-vc.png_1 ├── pull-request.png ├── repo-pull-requests.png ├── subversion-change-2010-2012.png ├── subversion-share-2012.png └── with-vc.png ├── index.html └── reveal ├── LICENSE ├── README.md ├── css ├── images │ ├── pink-logo.png │ └── white-logo.png ├── print │ ├── paper.css │ └── pdf.css ├── reveal.css ├── shaders │ ├── tile-flip.fs │ └── tile-flip.vs └── theme │ ├── README.md │ ├── gdicool.css │ ├── gdidefault.css │ ├── gdilight.css │ ├── gdisunny.css │ ├── source │ ├── gdicool.scss │ ├── gdidefault.scss │ ├── gdilight.scss │ └── gdisunny.scss │ └── template │ ├── mixins.scss │ ├── settings.scss │ └── theme.scss ├── favicon.ico ├── index.html ├── js ├── reveal.js └── reveal.min.js ├── lib ├── css │ ├── dark.css │ ├── light.css │ └── zenburn.css ├── font │ ├── Gotham-Bold.otf │ ├── Gotham-BoldIta.otf │ ├── Gotham-BoldItalic.otf │ ├── Gotham-Book.otf │ ├── Gotham-BookIta.otf │ ├── Gotham-BookItalic.otf │ ├── Gotham-Medium.otf │ ├── Gotham-MediumIta.otf │ ├── Gotham-MediumItalic.otf │ ├── league_gothic-webfont.eot │ ├── league_gothic-webfont.svg │ ├── league_gothic-webfont.ttf │ ├── league_gothic-webfont.woff │ └── league_gothic_license └── js │ ├── classList.js │ ├── head.min.js │ └── html5shiv.js ├── package.json └── plugin ├── highlight └── highlight.js ├── markdown ├── markdown.js └── showdown.js ├── notes-server ├── client.js ├── index.js └── notes.html ├── notes ├── notes.html └── notes.js └── zoom-js └── zoom.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/README.md -------------------------------------------------------------------------------- /images/add-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/add-ssh.png -------------------------------------------------------------------------------- /images/bootcamp_2_newrepo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/bootcamp_2_newrepo.jpg -------------------------------------------------------------------------------- /images/bootcamp_2_repoinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/bootcamp_2_repoinfo.png -------------------------------------------------------------------------------- /images/bootcamp_3_fork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/bootcamp_3_fork.jpg -------------------------------------------------------------------------------- /images/click-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/click-pull-request.png -------------------------------------------------------------------------------- /images/dvcs-change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/dvcs-change.png -------------------------------------------------------------------------------- /images/gdi_logo_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/gdi_logo_badge.png -------------------------------------------------------------------------------- /images/gitk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/gitk.png -------------------------------------------------------------------------------- /images/install-git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/install-git.png -------------------------------------------------------------------------------- /images/manage-my-pull-requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/manage-my-pull-requests.png -------------------------------------------------------------------------------- /images/no-vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/no-vc.png -------------------------------------------------------------------------------- /images/no-vc.png_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/no-vc.png_1 -------------------------------------------------------------------------------- /images/pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/pull-request.png -------------------------------------------------------------------------------- /images/repo-pull-requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/repo-pull-requests.png -------------------------------------------------------------------------------- /images/subversion-change-2010-2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/subversion-change-2010-2012.png -------------------------------------------------------------------------------- /images/subversion-share-2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/subversion-share-2012.png -------------------------------------------------------------------------------- /images/with-vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/images/with-vc.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/index.html -------------------------------------------------------------------------------- /reveal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/LICENSE -------------------------------------------------------------------------------- /reveal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/README.md -------------------------------------------------------------------------------- /reveal/css/images/pink-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/images/pink-logo.png -------------------------------------------------------------------------------- /reveal/css/images/white-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/images/white-logo.png -------------------------------------------------------------------------------- /reveal/css/print/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/print/paper.css -------------------------------------------------------------------------------- /reveal/css/print/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/print/pdf.css -------------------------------------------------------------------------------- /reveal/css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/reveal.css -------------------------------------------------------------------------------- /reveal/css/shaders/tile-flip.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/shaders/tile-flip.fs -------------------------------------------------------------------------------- /reveal/css/shaders/tile-flip.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/shaders/tile-flip.vs -------------------------------------------------------------------------------- /reveal/css/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/README.md -------------------------------------------------------------------------------- /reveal/css/theme/gdicool.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/gdicool.css -------------------------------------------------------------------------------- /reveal/css/theme/gdidefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/gdidefault.css -------------------------------------------------------------------------------- /reveal/css/theme/gdilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/gdilight.css -------------------------------------------------------------------------------- /reveal/css/theme/gdisunny.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/gdisunny.css -------------------------------------------------------------------------------- /reveal/css/theme/source/gdicool.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/source/gdicool.scss -------------------------------------------------------------------------------- /reveal/css/theme/source/gdidefault.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/source/gdidefault.scss -------------------------------------------------------------------------------- /reveal/css/theme/source/gdilight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/source/gdilight.scss -------------------------------------------------------------------------------- /reveal/css/theme/source/gdisunny.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/source/gdisunny.scss -------------------------------------------------------------------------------- /reveal/css/theme/template/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/template/mixins.scss -------------------------------------------------------------------------------- /reveal/css/theme/template/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/template/settings.scss -------------------------------------------------------------------------------- /reveal/css/theme/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/css/theme/template/theme.scss -------------------------------------------------------------------------------- /reveal/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/favicon.ico -------------------------------------------------------------------------------- /reveal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/index.html -------------------------------------------------------------------------------- /reveal/js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/js/reveal.js -------------------------------------------------------------------------------- /reveal/js/reveal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/js/reveal.min.js -------------------------------------------------------------------------------- /reveal/lib/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/css/dark.css -------------------------------------------------------------------------------- /reveal/lib/css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/css/light.css -------------------------------------------------------------------------------- /reveal/lib/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/css/zenburn.css -------------------------------------------------------------------------------- /reveal/lib/font/Gotham-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/Gotham-Bold.otf -------------------------------------------------------------------------------- /reveal/lib/font/Gotham-BoldIta.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/Gotham-BoldIta.otf -------------------------------------------------------------------------------- /reveal/lib/font/Gotham-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/Gotham-BoldItalic.otf -------------------------------------------------------------------------------- /reveal/lib/font/Gotham-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/Gotham-Book.otf -------------------------------------------------------------------------------- /reveal/lib/font/Gotham-BookIta.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/Gotham-BookIta.otf -------------------------------------------------------------------------------- /reveal/lib/font/Gotham-BookItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/Gotham-BookItalic.otf -------------------------------------------------------------------------------- /reveal/lib/font/Gotham-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/Gotham-Medium.otf -------------------------------------------------------------------------------- /reveal/lib/font/Gotham-MediumIta.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/Gotham-MediumIta.otf -------------------------------------------------------------------------------- /reveal/lib/font/Gotham-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/Gotham-MediumItalic.otf -------------------------------------------------------------------------------- /reveal/lib/font/league_gothic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/league_gothic-webfont.eot -------------------------------------------------------------------------------- /reveal/lib/font/league_gothic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/league_gothic-webfont.svg -------------------------------------------------------------------------------- /reveal/lib/font/league_gothic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/league_gothic-webfont.ttf -------------------------------------------------------------------------------- /reveal/lib/font/league_gothic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/league_gothic-webfont.woff -------------------------------------------------------------------------------- /reveal/lib/font/league_gothic_license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/font/league_gothic_license -------------------------------------------------------------------------------- /reveal/lib/js/classList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/js/classList.js -------------------------------------------------------------------------------- /reveal/lib/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/js/head.min.js -------------------------------------------------------------------------------- /reveal/lib/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/lib/js/html5shiv.js -------------------------------------------------------------------------------- /reveal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/package.json -------------------------------------------------------------------------------- /reveal/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /reveal/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /reveal/plugin/markdown/showdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/plugin/markdown/showdown.js -------------------------------------------------------------------------------- /reveal/plugin/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/plugin/notes-server/client.js -------------------------------------------------------------------------------- /reveal/plugin/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/plugin/notes-server/index.js -------------------------------------------------------------------------------- /reveal/plugin/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/plugin/notes-server/notes.html -------------------------------------------------------------------------------- /reveal/plugin/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/plugin/notes/notes.html -------------------------------------------------------------------------------- /reveal/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/plugin/notes/notes.js -------------------------------------------------------------------------------- /reveal/plugin/zoom-js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-featured-git-github/HEAD/reveal/plugin/zoom-js/zoom.js --------------------------------------------------------------------------------