{"id":20122490,"url":"https://github.com/ttiimmothy/git-go","last_synced_at":"2026-04-28T17:31:33.126Z","repository":{"id":209813112,"uuid":"725003864","full_name":"ttiimmothy/git-go","owner":"ttiimmothy","description":"My Git starts with Go","archived":false,"fork":false,"pushed_at":"2024-02-12T02:10:30.000Z","size":51,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-08T09:45:39.607Z","etag":null,"topics":["git","go"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ttiimmothy.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-29T08:37:02.000Z","updated_at":"2023-12-01T06:05:05.000Z","dependencies_parsed_at":"2024-11-13T19:38:33.639Z","dependency_job_id":"00cc95b6-e765-4afe-bc67-0acfe75785ef","html_url":"https://github.com/ttiimmothy/git-go","commit_stats":null,"previous_names":["ttiimmothy/git-golang","ttiimmothy/git-go"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ttiimmothy/git-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ttiimmothy%2Fgit-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ttiimmothy%2Fgit-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ttiimmothy%2Fgit-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ttiimmothy%2Fgit-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ttiimmothy","download_url":"https://codeload.github.com/ttiimmothy/git-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ttiimmothy%2Fgit-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32392266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T14:34:11.604Z","status":"ssl_error","status_checked_at":"2026-04-28T14:32:37.009Z","response_time":56,"last_error":"SSL_read: 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","go"],"created_at":"2024-11-13T19:38:26.598Z","updated_at":"2026-04-28T17:31:33.108Z","avatar_url":"https://github.com/ttiimmothy.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![progress-banner](https://backend.codecrafters.io/progress/git/152db50b-c5d5-4b62-9265-f898379e1d4d)](https://app.codecrafters.io/users/codecrafters-bot?r=2qF)\n\n# Git Go\n\nThis is a starting point for Go solutions to the\n[\"Build Your Own Git\" Challenge](https://codecrafters.io/challenges/git).\n\nIn this challenge, you'll build a small Git implementation that's capable of\ninitializing a repository, creating commits and cloning a public repository.\nAlong the way we'll learn about the `.git` directory, Git objects (blobs,\ncommits, trees etc.), Git's transfer protocols and more.\n\n**Note**: If you're viewing this repo on GitHub, head over to\n[codecrafters.io](https://codecrafters.io) to try the challenge.\n\n## Passing the first stage\n\nThe entry point for your Git implementation is in `cmd/mygit/main.go`. Study and\nuncomment the relevant code, and push your changes to pass the first stage:\n\n```sh\ngit add .\ngit commit -m \"pass 1st stage\" # any msg\ngit push origin master\n```\n\nThat's all!\n\n## Stage 2 \u0026 beyond\n\nNote: This section is for stages 2 and beyond.\n\n1. Ensure you have `go` installed locally\n1. Run `./your_git.sh` to run your Git implementation, which is implemented in\n   `cmd/mygit/main.go`.\n1. Commit your changes and run `git push origin master` to submit your solution\n   to CodeCrafters. Test output will be streamed to your terminal.\n\n## Testing locally\n\nThe `your_git.sh` script is expected to operate on the `.git` folder inside the\ncurrent working directory. If you're running this inside the root of this\nrepository, you might end up accidentally damaging your repository's `.git`\nfolder.\n\nWe suggest executing `your_git.sh` in a different folder when testing locally.\nFor example:\n\n```sh\nmkdir -p /tmp/testing \u0026\u0026 cd /tmp/testing\n/path/to/your/repo/your_git.sh init\n```\n\nTo make this easier to type out, you could add a\n[shell alias](https://shapeshed.com/unix-alias/):\n\n```sh\nalias mygit=/path/to/your/repo/your_git.sh\n\nmkdir -p /tmp/testing \u0026\u0026 cd /tmp/testing\nmygit init\n```\n\n## License\n\nGit Go is licensed under [GNU General Public License v3.0](LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fttiimmothy%2Fgit-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fttiimmothy%2Fgit-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fttiimmothy%2Fgit-go/lists"}