{"id":16084336,"url":"https://github.com/avidrucker/how-to-git-and-github-together","last_synced_at":"2025-04-05T13:27:13.863Z","repository":{"id":208709056,"uuid":"722306442","full_name":"avidrucker/how-to-git-and-github-together","owner":"avidrucker","description":"a repo for practicing Git and GitHub","archived":false,"fork":false,"pushed_at":"2023-11-22T21:25:18.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-11T09:18:25.717Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/avidrucker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-11-22T21:22:54.000Z","updated_at":"2024-08-02T15:17:14.000Z","dependencies_parsed_at":"2023-11-22T22:27:35.339Z","dependency_job_id":"96bc72fa-de01-4739-a10a-df478efe1610","html_url":"https://github.com/avidrucker/how-to-git-and-github-together","commit_stats":null,"previous_names":["avidrucker/how-to-git-and-github-together"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avidrucker%2Fhow-to-git-and-github-together","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avidrucker%2Fhow-to-git-and-github-together/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avidrucker%2Fhow-to-git-and-github-together/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avidrucker%2Fhow-to-git-and-github-together/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avidrucker","download_url":"https://codeload.github.com/avidrucker/how-to-git-and-github-together/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247341403,"owners_count":20923438,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-09T12:45:47.849Z","updated_at":"2025-04-05T13:27:13.605Z","avatar_url":"https://github.com/avidrucker.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git and GitHub Combo Tutorial\nLet's learn Git and GitHub by by making a guide to Tic-Tac-Toe\n\n## 1. Setup and Introduction\n- Git is a tool to track changes in code. It's like a supercharged 'save' feature.\n- We'll make a nice-looking Tic-Tac-Toe guide using it.\n- Prerequisites: Familiarity with basic terminal or command prompt commands.\n\n## 2. Install and Setup Git\n- Install: [Download Git here](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) and follow the instructions.\n- Setup: Tell Git who you are:\n```bash\ngit config --global user.name \"Your Name\"\ngit config --global user.email \"youremail@example.com\"\n```\n\n## 3. Get the Tic-Tac-Toe Instructions\n- Go to [Tic-Tac-Toe instructions](https://github.com/avidrucker/how-to-play-tictactoe).\n- Click \"Fork\" to get your own copy on GitHub.\n\n## 4. Download Your Copy\n- On your GitHub fork, click \"code\" \u003e copy the link.\n- On your computer:\n\n```bash\ngit clone YOUR_LINK_HERE\ncd how-to-play-tictactoe/\n```\n\n## 5. Make a Better Tic-Tac-Toe Guide\n- Make a new file: `touch tic-tac-toe.md`\n- Use any text editor to write a guide in this file.\n- Save your changes in Git:\n```bash\ngit add tic-tac-toe.md\ngit commit -m \"Created a new Tic-Tac-Toe guide.\"\n```\n\n## 6. Update Your Copy on GitHub\n- To save your local changes online:\n```bash\ngit push\n```\n\n## Bonus 7. Oops! Made a Mistake?\n- Git's got you covered. Use commands like `git log`, `git reset`, and others to backtrack. (coming soon...)\n\n## Bonus 8. Ignore Unnecessary Files\n- Some files (like temporary ones) don't need to be in Git. Use a .gitignore file to list them. (coming soon...)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favidrucker%2Fhow-to-git-and-github-together","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favidrucker%2Fhow-to-git-and-github-together","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favidrucker%2Fhow-to-git-and-github-together/lists"}