├── README.md ├── branches.md ├── commits-second-part.md ├── configure-git.md ├── create-repository.md ├── first-commit.md ├── images ├── branch-checkout.png ├── branch-head.png ├── branch.png ├── branches-two-chains-2.png ├── branches-two-chains-3.png ├── branches-two-chains.png ├── commits.png ├── file-status-lifecycle.png ├── git-bash.png ├── git-terminal.png ├── github-create-repository-form.png ├── github-new-repository.png ├── github-repository-url.png ├── github-repository-with-commits.png ├── new-branch.png ├── versioning-by-number.png └── versioning-by-time.png ├── install-git.md ├── intro.md ├── remote-repository.md ├── renaming-files.md ├── snippets ├── .gitignore ├── example.png ├── first-commit-1.txt ├── generate-screenshots.js ├── index.html ├── package-lock.json ├── package.json └── styles.css ├── tracked-and-untracked-files.md └── what-is-vcs.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/README.md -------------------------------------------------------------------------------- /branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/branches.md -------------------------------------------------------------------------------- /commits-second-part.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/commits-second-part.md -------------------------------------------------------------------------------- /configure-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/configure-git.md -------------------------------------------------------------------------------- /create-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/create-repository.md -------------------------------------------------------------------------------- /first-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/first-commit.md -------------------------------------------------------------------------------- /images/branch-checkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/branch-checkout.png -------------------------------------------------------------------------------- /images/branch-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/branch-head.png -------------------------------------------------------------------------------- /images/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/branch.png -------------------------------------------------------------------------------- /images/branches-two-chains-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/branches-two-chains-2.png -------------------------------------------------------------------------------- /images/branches-two-chains-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/branches-two-chains-3.png -------------------------------------------------------------------------------- /images/branches-two-chains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/branches-two-chains.png -------------------------------------------------------------------------------- /images/commits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/commits.png -------------------------------------------------------------------------------- /images/file-status-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/file-status-lifecycle.png -------------------------------------------------------------------------------- /images/git-bash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/git-bash.png -------------------------------------------------------------------------------- /images/git-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/git-terminal.png -------------------------------------------------------------------------------- /images/github-create-repository-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/github-create-repository-form.png -------------------------------------------------------------------------------- /images/github-new-repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/github-new-repository.png -------------------------------------------------------------------------------- /images/github-repository-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/github-repository-url.png -------------------------------------------------------------------------------- /images/github-repository-with-commits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/github-repository-with-commits.png -------------------------------------------------------------------------------- /images/new-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/new-branch.png -------------------------------------------------------------------------------- /images/versioning-by-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/versioning-by-number.png -------------------------------------------------------------------------------- /images/versioning-by-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/images/versioning-by-time.png -------------------------------------------------------------------------------- /install-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/install-git.md -------------------------------------------------------------------------------- /intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/intro.md -------------------------------------------------------------------------------- /remote-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/remote-repository.md -------------------------------------------------------------------------------- /renaming-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/renaming-files.md -------------------------------------------------------------------------------- /snippets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | node_modules 3 | 4 | -------------------------------------------------------------------------------- /snippets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/snippets/example.png -------------------------------------------------------------------------------- /snippets/first-commit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/snippets/first-commit-1.txt -------------------------------------------------------------------------------- /snippets/generate-screenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/snippets/generate-screenshots.js -------------------------------------------------------------------------------- /snippets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/snippets/index.html -------------------------------------------------------------------------------- /snippets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/snippets/package-lock.json -------------------------------------------------------------------------------- /snippets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/snippets/package.json -------------------------------------------------------------------------------- /snippets/styles.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tracked-and-untracked-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/tracked-and-untracked-files.md -------------------------------------------------------------------------------- /what-is-vcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imangazaliev/git-for-humans/HEAD/what-is-vcs.md --------------------------------------------------------------------------------