{"id":21074290,"url":"https://github.com/ladykerr/gitgoingdemo","last_synced_at":"2026-02-11T01:34:13.332Z","repository":{"id":221885148,"uuid":"755623895","full_name":"LadyKerr/GitGoingDemo","owner":"LadyKerr","description":"Beginner-friendly project focused on tracking progress and learning Git.","archived":false,"fork":false,"pushed_at":"2024-07-15T21:12:57.000Z","size":9,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-11T20:40:54.773Z","etag":null,"topics":["git","github","learning-exercise","learning-git","learning-github"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LadyKerr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-10T19:01:37.000Z","updated_at":"2025-07-26T19:01:15.000Z","dependencies_parsed_at":"2024-02-10T20:30:43.564Z","dependency_job_id":"7ddfd6a0-0f1d-4ad3-a093-e21a64ae9437","html_url":"https://github.com/LadyKerr/GitGoingDemo","commit_stats":null,"previous_names":["ladykerr/gitgoing"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LadyKerr/GitGoingDemo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LadyKerr%2FGitGoingDemo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LadyKerr%2FGitGoingDemo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LadyKerr%2FGitGoingDemo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LadyKerr%2FGitGoingDemo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LadyKerr","download_url":"https://codeload.github.com/LadyKerr/GitGoingDemo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LadyKerr%2FGitGoingDemo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29324258,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T00:34:26.354Z","status":"ssl_error","status_checked_at":"2026-02-11T00:34:09.494Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["git","github","learning-exercise","learning-git","learning-github"],"created_at":"2024-11-19T19:15:33.438Z","updated_at":"2026-02-11T01:34:13.315Z","avatar_url":"https://github.com/LadyKerr.png","language":"JavaScript","readme":"# GitGoing 🏃🏽‍♀️💨\nGitGoing is a beginner-friendly project focused on tracking progress and learning how to use git and GitHub.\n\n## Getting Started 🛠️\n\n1. You will need to have git installed on your local machine. You can download it [here](https://git-scm.com/downloads).\n\n2. Once you have git installed, you will need to configure git. You can do this by running the following commands in your terminal.\n\n```bash\ngit config --global user.name \"Your Name\"\ngit config --global user.email \"Your Email\"\n```\n\n3. Fork the repository by clicking the \"Fork\" button in the upper right corner of the repository page. \n\n\u003e 💡 This will create a copy of the repository in your GitHub account.\n\n\n4. Then, start by cloning the forked repository to your local machine.\n    \n```bash\n    git clone https://github.com/YourHandle/GitGoing.git\n ```\n\n\n# Practice the git flow by following the steps below 🚀\n\n### Step 1: Create a new branch and switch to new branch\n\nCreate a new branch using the following command:\n\n```bash\ngit checkout -b \u003cyour-new-branch-name\u003e\n```\n\nOnce you create your new branch, you will be switched to that branch with the following command:\n\n```bash\ngit switch \u003cyour-new-branch-name\u003e\n```\n\n### Step 2: Make changes\n\nYou can add a new file, edit an existing file, or delete a file.\nTo keep things simple, let's edit the `index.html` file by changing the name to \"GitGoing\" on line 10.\n\n### Step 3: Stage your changes\n\nOnce you update the name, stage your changes using the following command:\n\n```bash\ngit add .\n```\n\nOr, you can stage the individual file you changed by using the following command:\n\n```bash\ngit add index.html\n```\n\n### Step 4: Commit your changes\n\nCommit your changes using the following command:\n\n```bash\ngit commit -m \"Your commit message\"\n```\n\n### Step 5: Push your changes\n\nPush your changes to the remote repository using the following command:\n\n```bash\ngit push origin \u003cyour-branch-name\u003e\n```\n\n### Step 6: Create a pull request\n\nCreate a pull request on GitHub.\n\n### Step 7: Review and merge your pull request\n\nReview and merge your pull request on GitHub.\n\n### Step 8: Delete your branch\n\nDelete your branch using the following command:\n\n```bash\ngit branch -d \u003cyour-branch-name\u003e\n```\n\n## Learning Resources:\n- [Git Cheatsheet ↗](https://education.github.com/git-cheat-sheet-education.pdf)\n- [Introduction to Git and GitHub ↗](https://github.com/skills/introduction-to-github)\n- [GitHub Skills Courses ↗](https://skills.github.com/)\n- [GitHub Foundations Certificate ↗](https://learn.microsoft.com/en-us/collections/o1njfe825p602p)\n\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fladykerr%2Fgitgoingdemo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fladykerr%2Fgitgoingdemo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fladykerr%2Fgitgoingdemo/lists"}