├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── config.yml ├── course-details.md ├── responses ├── 00_assign-yourself.md ├── 00_introduction.md ├── 01_turn-on-gh-pages.md ├── 02_close-issue.md ├── 03_create-a-branch.md ├── 03_head-to-branch.md ├── 03_your-first-contribution.md ├── 04_commit-something.md ├── 05_open-a-pr.md ├── 06_fix-base.md ├── 06_fix-body.md ├── 06_fix-filename.md ├── 06_request-changes.md ├── 07_pr-succeeds.md ├── 08_reminder-delete.md ├── 08_reopen.md ├── es │ ├── 00_assign-yourself.md │ ├── 00_introduction.md │ ├── 01_turn-on-gh-pages.md │ ├── 02_close-issue.md │ ├── 03_create-a-branch.md │ ├── 03_head-to-branch.md │ ├── 03_your-first-contribution.md │ ├── 04_commit-something.md │ ├── 05_open-a-pr.md │ ├── 06_fix-base.md │ ├── 06_fix-body.md │ ├── 06_fix-filename.md │ ├── 06_request-changes.md │ ├── 07_pr-succeeds.md │ ├── 08_reminder-delete.md │ └── 08_reopen.md ├── fr │ ├── 00_assign-yourself.md │ ├── 00_introduction.md │ ├── 01_turn-on-gh-pages.md │ ├── 02_close-issue.md │ ├── 03_create-a-branch.md │ ├── 03_head-to-branch.md │ ├── 03_your-first-contribution.md │ ├── 04_commit-something.md │ ├── 05_open-a-pr.md │ ├── 06_fix-base.md │ ├── 06_fix-body.md │ ├── 06_fix-filename.md │ ├── 06_request-changes.md │ ├── 07_pr-succeeds.md │ ├── 08_reminder-delete.md │ └── 08_reopen.md └── ja │ ├── 00_assign-yourself.md │ ├── 00_introduction.md │ ├── 01_turn-on-gh-pages.md │ ├── 02_close-issue.md │ ├── 03_create-a-branch.md │ ├── 03_head-to-branch.md │ ├── 03_your-first-contribution.md │ ├── 04_commit-something.md │ ├── 05_open-a-pr.md │ ├── 06_fix-base.md │ ├── 06_fix-body.md │ ├── 06_fix-filename.md │ ├── 06_request-changes.md │ ├── 07_pr-succeeds.md │ ├── 08_reminder-delete.md │ └── 08_reopen.md └── server-installation-notes.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/config.yml -------------------------------------------------------------------------------- /course-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/course-details.md -------------------------------------------------------------------------------- /responses/00_assign-yourself.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/00_assign-yourself.md -------------------------------------------------------------------------------- /responses/00_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/00_introduction.md -------------------------------------------------------------------------------- /responses/01_turn-on-gh-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/01_turn-on-gh-pages.md -------------------------------------------------------------------------------- /responses/02_close-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/02_close-issue.md -------------------------------------------------------------------------------- /responses/03_create-a-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/03_create-a-branch.md -------------------------------------------------------------------------------- /responses/03_head-to-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/03_head-to-branch.md -------------------------------------------------------------------------------- /responses/03_your-first-contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/03_your-first-contribution.md -------------------------------------------------------------------------------- /responses/04_commit-something.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/04_commit-something.md -------------------------------------------------------------------------------- /responses/05_open-a-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/05_open-a-pr.md -------------------------------------------------------------------------------- /responses/06_fix-base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/06_fix-base.md -------------------------------------------------------------------------------- /responses/06_fix-body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/06_fix-body.md -------------------------------------------------------------------------------- /responses/06_fix-filename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/06_fix-filename.md -------------------------------------------------------------------------------- /responses/06_request-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/06_request-changes.md -------------------------------------------------------------------------------- /responses/07_pr-succeeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/07_pr-succeeds.md -------------------------------------------------------------------------------- /responses/08_reminder-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/08_reminder-delete.md -------------------------------------------------------------------------------- /responses/08_reopen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/08_reopen.md -------------------------------------------------------------------------------- /responses/es/00_assign-yourself.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/00_assign-yourself.md -------------------------------------------------------------------------------- /responses/es/00_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/00_introduction.md -------------------------------------------------------------------------------- /responses/es/01_turn-on-gh-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/01_turn-on-gh-pages.md -------------------------------------------------------------------------------- /responses/es/02_close-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/02_close-issue.md -------------------------------------------------------------------------------- /responses/es/03_create-a-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/03_create-a-branch.md -------------------------------------------------------------------------------- /responses/es/03_head-to-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/03_head-to-branch.md -------------------------------------------------------------------------------- /responses/es/03_your-first-contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/03_your-first-contribution.md -------------------------------------------------------------------------------- /responses/es/04_commit-something.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/04_commit-something.md -------------------------------------------------------------------------------- /responses/es/05_open-a-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/05_open-a-pr.md -------------------------------------------------------------------------------- /responses/es/06_fix-base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/06_fix-base.md -------------------------------------------------------------------------------- /responses/es/06_fix-body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/06_fix-body.md -------------------------------------------------------------------------------- /responses/es/06_fix-filename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/06_fix-filename.md -------------------------------------------------------------------------------- /responses/es/06_request-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/06_request-changes.md -------------------------------------------------------------------------------- /responses/es/07_pr-succeeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/07_pr-succeeds.md -------------------------------------------------------------------------------- /responses/es/08_reminder-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/08_reminder-delete.md -------------------------------------------------------------------------------- /responses/es/08_reopen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/es/08_reopen.md -------------------------------------------------------------------------------- /responses/fr/00_assign-yourself.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/00_assign-yourself.md -------------------------------------------------------------------------------- /responses/fr/00_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/00_introduction.md -------------------------------------------------------------------------------- /responses/fr/01_turn-on-gh-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/01_turn-on-gh-pages.md -------------------------------------------------------------------------------- /responses/fr/02_close-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/02_close-issue.md -------------------------------------------------------------------------------- /responses/fr/03_create-a-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/03_create-a-branch.md -------------------------------------------------------------------------------- /responses/fr/03_head-to-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/03_head-to-branch.md -------------------------------------------------------------------------------- /responses/fr/03_your-first-contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/03_your-first-contribution.md -------------------------------------------------------------------------------- /responses/fr/04_commit-something.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/04_commit-something.md -------------------------------------------------------------------------------- /responses/fr/05_open-a-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/05_open-a-pr.md -------------------------------------------------------------------------------- /responses/fr/06_fix-base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/06_fix-base.md -------------------------------------------------------------------------------- /responses/fr/06_fix-body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/06_fix-body.md -------------------------------------------------------------------------------- /responses/fr/06_fix-filename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/06_fix-filename.md -------------------------------------------------------------------------------- /responses/fr/06_request-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/06_request-changes.md -------------------------------------------------------------------------------- /responses/fr/07_pr-succeeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/07_pr-succeeds.md -------------------------------------------------------------------------------- /responses/fr/08_reminder-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/08_reminder-delete.md -------------------------------------------------------------------------------- /responses/fr/08_reopen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/fr/08_reopen.md -------------------------------------------------------------------------------- /responses/ja/00_assign-yourself.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/00_assign-yourself.md -------------------------------------------------------------------------------- /responses/ja/00_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/00_introduction.md -------------------------------------------------------------------------------- /responses/ja/01_turn-on-gh-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/01_turn-on-gh-pages.md -------------------------------------------------------------------------------- /responses/ja/02_close-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/02_close-issue.md -------------------------------------------------------------------------------- /responses/ja/03_create-a-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/03_create-a-branch.md -------------------------------------------------------------------------------- /responses/ja/03_head-to-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/03_head-to-branch.md -------------------------------------------------------------------------------- /responses/ja/03_your-first-contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/03_your-first-contribution.md -------------------------------------------------------------------------------- /responses/ja/04_commit-something.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/04_commit-something.md -------------------------------------------------------------------------------- /responses/ja/05_open-a-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/05_open-a-pr.md -------------------------------------------------------------------------------- /responses/ja/06_fix-base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/06_fix-base.md -------------------------------------------------------------------------------- /responses/ja/06_fix-body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/06_fix-body.md -------------------------------------------------------------------------------- /responses/ja/06_fix-filename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/06_fix-filename.md -------------------------------------------------------------------------------- /responses/ja/06_request-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/06_request-changes.md -------------------------------------------------------------------------------- /responses/ja/07_pr-succeeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/07_pr-succeeds.md -------------------------------------------------------------------------------- /responses/ja/08_reminder-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/08_reminder-delete.md -------------------------------------------------------------------------------- /responses/ja/08_reopen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/responses/ja/08_reopen.md -------------------------------------------------------------------------------- /server-installation-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubtraining/introduction-to-github/HEAD/server-installation-notes.md --------------------------------------------------------------------------------