├── .gitignore ├── All About Git.pptx ├── README.md ├── docs ├── .gitignore ├── README.md ├── css │ └── style.css ├── img │ └── pfp.png └── index.html └── resources ├── github-git-cheat-sheet.pdf └── gource_swiftgrade_git_hist.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldinGuy/UltimateGitResource/HEAD/.gitignore -------------------------------------------------------------------------------- /All About Git.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldinGuy/UltimateGitResource/HEAD/All About Git.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldinGuy/UltimateGitResource/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldinGuy/UltimateGitResource/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- 1 | /* add your own css! */ 2 | -------------------------------------------------------------------------------- /docs/img/pfp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldinGuy/UltimateGitResource/HEAD/docs/img/pfp.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldinGuy/UltimateGitResource/HEAD/docs/index.html -------------------------------------------------------------------------------- /resources/github-git-cheat-sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldinGuy/UltimateGitResource/HEAD/resources/github-git-cheat-sheet.pdf -------------------------------------------------------------------------------- /resources/gource_swiftgrade_git_hist.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldinGuy/UltimateGitResource/HEAD/resources/gource_swiftgrade_git_hist.mp4 --------------------------------------------------------------------------------