├── .gitignore ├── Git ├── 01 Getting Started │ ├── 01 What is Git?.md │ ├── 02 Installing Git.md │ ├── 03 Git vs Github.md │ ├── 04 VScode Setup.md │ ├── 05 First Time Git Setup.md │ ├── 06 Basics.md │ └── images │ │ ├── .DS_Store │ │ ├── 3-stages.png │ │ ├── CVS-vs-DVS.ppm │ │ ├── editor-popularity.png │ │ └── git-config.png ├── 02 Branching │ └── 01 Merge vs Rebase.md ├── 06 Github │ └── PR Commenting.md └── DVC.md ├── README.md ├── [OLD VERSION] ├── 05. Merge.md ├── [OLD] 01. Introduction │ ├── 01. Overview.md │ ├── 02. Introduction.md │ ├── 03. Installation.md │ └── 04. Key Concepts.md ├── [OLD] 02. Getting Started │ └── 01. Setting Up a Repository.md ├── [OLD] 03. Saving Changes │ ├── 01. Add and Commit.md │ ├── 02. Inspecting a Repository.md │ ├── 03. gitignore.md │ └── 04. Branching.md ├── [OLD] 04. Remote Repository │ ├── 01. Remote Repository Setup.md │ └── 02. Configuration.md ├── [OLD] 05. Comparison │ └── 01. Comparing Changes.md ├── [OLD] 06. Undoing Changes │ ├── 0.1 Stashing Your Work.md │ ├── 02. What is Lost?.md │ ├── 03. Undoing a Committed Snapshot.md │ ├── 04. Undoing Uncommitted Changes.md │ └── 05. reset, checkout, revert.md └── images │ ├── 3-stages.png │ ├── after-checkout-branch.png │ ├── after-reset.png │ ├── before-checkout-branch.png │ ├── before-reset.png │ ├── branch.svg │ ├── checkout-branch.png │ ├── checkout-commit.png │ ├── create-branch-pointer.svg │ ├── create-branch.svg │ ├── detached-head.png │ ├── diff-new.png │ ├── diff-no-output.png │ ├── git-add.png │ ├── git-commit.png │ ├── git-directory.png │ ├── git-github.png │ ├── git-init.png │ ├── git-log.png │ ├── git-push.png │ ├── git-stages.png │ ├── git-stash.png │ ├── merge.svg │ └── merge_2.svg ├── files └── text.txt └── images └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/.gitignore -------------------------------------------------------------------------------- /Git/01 Getting Started/01 What is Git?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/01 What is Git?.md -------------------------------------------------------------------------------- /Git/01 Getting Started/02 Installing Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/02 Installing Git.md -------------------------------------------------------------------------------- /Git/01 Getting Started/03 Git vs Github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/03 Git vs Github.md -------------------------------------------------------------------------------- /Git/01 Getting Started/04 VScode Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/04 VScode Setup.md -------------------------------------------------------------------------------- /Git/01 Getting Started/05 First Time Git Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/05 First Time Git Setup.md -------------------------------------------------------------------------------- /Git/01 Getting Started/06 Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/06 Basics.md -------------------------------------------------------------------------------- /Git/01 Getting Started/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/images/.DS_Store -------------------------------------------------------------------------------- /Git/01 Getting Started/images/3-stages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/images/3-stages.png -------------------------------------------------------------------------------- /Git/01 Getting Started/images/CVS-vs-DVS.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/images/CVS-vs-DVS.ppm -------------------------------------------------------------------------------- /Git/01 Getting Started/images/editor-popularity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/images/editor-popularity.png -------------------------------------------------------------------------------- /Git/01 Getting Started/images/git-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/01 Getting Started/images/git-config.png -------------------------------------------------------------------------------- /Git/02 Branching/01 Merge vs Rebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/02 Branching/01 Merge vs Rebase.md -------------------------------------------------------------------------------- /Git/06 Github/PR Commenting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/06 Github/PR Commenting.md -------------------------------------------------------------------------------- /Git/DVC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/Git/DVC.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/README.md -------------------------------------------------------------------------------- /[OLD VERSION]/05. Merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/05. Merge.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 01. Introduction/01. Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 01. Introduction/01. Overview.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 01. Introduction/02. Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 01. Introduction/02. Introduction.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 01. Introduction/03. Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 01. Introduction/03. Installation.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 01. Introduction/04. Key Concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 01. Introduction/04. Key Concepts.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 02. Getting Started/01. Setting Up a Repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 02. Getting Started/01. Setting Up a Repository.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 03. Saving Changes/01. Add and Commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 03. Saving Changes/01. Add and Commit.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 03. Saving Changes/02. Inspecting a Repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 03. Saving Changes/02. Inspecting a Repository.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 03. Saving Changes/03. gitignore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 03. Saving Changes/03. gitignore.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 03. Saving Changes/04. Branching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 03. Saving Changes/04. Branching.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 04. Remote Repository/01. Remote Repository Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 04. Remote Repository/01. Remote Repository Setup.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 04. Remote Repository/02. Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 04. Remote Repository/02. Configuration.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 05. Comparison/01. Comparing Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 05. Comparison/01. Comparing Changes.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 06. Undoing Changes/0.1 Stashing Your Work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 06. Undoing Changes/0.1 Stashing Your Work.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 06. Undoing Changes/02. What is Lost?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 06. Undoing Changes/02. What is Lost?.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 06. Undoing Changes/03. Undoing a Committed Snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 06. Undoing Changes/03. Undoing a Committed Snapshot.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 06. Undoing Changes/04. Undoing Uncommitted Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 06. Undoing Changes/04. Undoing Uncommitted Changes.md -------------------------------------------------------------------------------- /[OLD VERSION]/[OLD] 06. Undoing Changes/05. reset, checkout, revert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/[OLD] 06. Undoing Changes/05. reset, checkout, revert.md -------------------------------------------------------------------------------- /[OLD VERSION]/images/3-stages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/3-stages.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/after-checkout-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/after-checkout-branch.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/after-reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/after-reset.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/before-checkout-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/before-checkout-branch.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/before-reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/before-reset.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/branch.svg -------------------------------------------------------------------------------- /[OLD VERSION]/images/checkout-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/checkout-branch.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/checkout-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/checkout-commit.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/create-branch-pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/create-branch-pointer.svg -------------------------------------------------------------------------------- /[OLD VERSION]/images/create-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/create-branch.svg -------------------------------------------------------------------------------- /[OLD VERSION]/images/detached-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/detached-head.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/diff-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/diff-new.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/diff-no-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/diff-no-output.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/git-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/git-add.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/git-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/git-commit.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/git-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/git-directory.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/git-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/git-github.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/git-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/git-init.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/git-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/git-log.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/git-push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/git-push.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/git-stages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/git-stages.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/git-stash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/git-stash.png -------------------------------------------------------------------------------- /[OLD VERSION]/images/merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/merge.svg -------------------------------------------------------------------------------- /[OLD VERSION]/images/merge_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/[OLD VERSION]/images/merge_2.svg -------------------------------------------------------------------------------- /files/text.txt: -------------------------------------------------------------------------------- 1 | asdfasdf -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Git/HEAD/images/logo.png --------------------------------------------------------------------------------