├── .github ├── dependabot.yml ├── steps │ ├── -step.txt │ ├── 0-welcome.md │ ├── 1-create-a-branch.md │ ├── 2-commit-a-file.md │ ├── 3-open-a-pull-request.md │ ├── 4-merge-your-pull-request.md │ └── X-finish.md └── workflows │ ├── 0-welcome.yml │ ├── 1-create-a-branch.yml │ ├── 2-commit-a-file.yml │ ├── 3-open-a-pull-request.yml │ └── 4-merge-your-pull-request.yml ├── .gitignore ├── LICENSE ├── README.md └── images ├── Actions-to-step-4.png ├── Green-merge-pull-request.png ├── Pull-request-description.png ├── code-tab.png ├── commit-full-screen.png ├── compare-and-pull-request.png ├── create-branch-button.png ├── create-new-file.png ├── create-new-repository.png ├── delete-branch.png ├── main-branch-dropdown.png ├── my-profile-file.png ├── profile-readme-example.png └── pull-request-branches.png /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/steps/-step.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /.github/steps/0-welcome.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/steps/1-create-a-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/steps/1-create-a-branch.md -------------------------------------------------------------------------------- /.github/steps/2-commit-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/steps/2-commit-a-file.md -------------------------------------------------------------------------------- /.github/steps/3-open-a-pull-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/steps/3-open-a-pull-request.md -------------------------------------------------------------------------------- /.github/steps/4-merge-your-pull-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/steps/4-merge-your-pull-request.md -------------------------------------------------------------------------------- /.github/steps/X-finish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/steps/X-finish.md -------------------------------------------------------------------------------- /.github/workflows/0-welcome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/workflows/0-welcome.yml -------------------------------------------------------------------------------- /.github/workflows/1-create-a-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/workflows/1-create-a-branch.yml -------------------------------------------------------------------------------- /.github/workflows/2-commit-a-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/workflows/2-commit-a-file.yml -------------------------------------------------------------------------------- /.github/workflows/3-open-a-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/workflows/3-open-a-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/4-merge-your-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.github/workflows/4-merge-your-pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/README.md -------------------------------------------------------------------------------- /images/Actions-to-step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/Actions-to-step-4.png -------------------------------------------------------------------------------- /images/Green-merge-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/Green-merge-pull-request.png -------------------------------------------------------------------------------- /images/Pull-request-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/Pull-request-description.png -------------------------------------------------------------------------------- /images/code-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/code-tab.png -------------------------------------------------------------------------------- /images/commit-full-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/commit-full-screen.png -------------------------------------------------------------------------------- /images/compare-and-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/compare-and-pull-request.png -------------------------------------------------------------------------------- /images/create-branch-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/create-branch-button.png -------------------------------------------------------------------------------- /images/create-new-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/create-new-file.png -------------------------------------------------------------------------------- /images/create-new-repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/create-new-repository.png -------------------------------------------------------------------------------- /images/delete-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/delete-branch.png -------------------------------------------------------------------------------- /images/main-branch-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/main-branch-dropdown.png -------------------------------------------------------------------------------- /images/my-profile-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/my-profile-file.png -------------------------------------------------------------------------------- /images/profile-readme-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/profile-readme-example.png -------------------------------------------------------------------------------- /images/pull-request-branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bholuvivek/skills-introduction-to-github/HEAD/images/pull-request-branches.png --------------------------------------------------------------------------------