{"id":21031558,"url":"https://github.com/slaveofcode/gitty","last_synced_at":"2026-04-19T02:03:45.120Z","repository":{"id":92795061,"uuid":"98076972","full_name":"slaveofcode/gitty","owner":"slaveofcode","description":"A simple git operations for human in pure-python based on dulwich project","archived":false,"fork":false,"pushed_at":"2017-08-25T04:49:40.000Z","size":120,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-30T08:33:03.040Z","etag":null,"topics":["dulwich","git","python","python3","repository"],"latest_commit_sha":null,"homepage":"","language":"Python","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/slaveofcode.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":"2017-07-23T05:33:14.000Z","updated_at":"2017-08-01T16:16:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"dddff86c-1d92-44fb-8320-6ee4736c5aa7","html_url":"https://github.com/slaveofcode/gitty","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/slaveofcode/gitty","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slaveofcode%2Fgitty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slaveofcode%2Fgitty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slaveofcode%2Fgitty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slaveofcode%2Fgitty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/slaveofcode","download_url":"https://codeload.github.com/slaveofcode/gitty/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slaveofcode%2Fgitty/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266424026,"owners_count":23926124,"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","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":["dulwich","git","python","python3","repository"],"created_at":"2024-11-19T12:29:14.157Z","updated_at":"2026-04-19T02:03:45.091Z","avatar_url":"https://github.com/slaveofcode.png","language":"Python","readme":"# Gitty\nA simple git operations for human based on dulwich project and Python3, most of these operations are base on very basic command on git. \n\n## List of Supported Commands\n- [`git config`](https://github.com/slaveofcode/gitty#git-config)\n- [`git clone`](https://github.com/slaveofcode/gitty#git-clone)\n- [`git fetch`](https://github.com/slaveofcode/gitty#git-fetch)\n- `git init`\n- `git remote`\n- `git add`\n- `git rm`\n- `git status`\n- `git commit`\n- `git diff`\n- `git log`\n- `git blame`\n- `git pull`\n- `git push`\n- `git branch`\n- `git checkout`\n- `git tag`\n- `git reset`\n- `git revert`\n- `git clean`\n- `git merge`\n- `git rebase`\n- `git stash`\n- `git archive`\n\n#### Git Config\n\nget config value from the repository config file `eg: .git/config`, so if you get something like global config or some value that not exist on that file, it would return `None` value.\n\n    from gitty import Gitty\n\n    git = Gitty('.') # set repo path, default is on current directory \n\n    # git config user.name\n    git.config('user.name')  # 'Aditya Kresna Permana'\n\n    # git config user.email\n    git.config('user.email') # 'zeandcode@gmail.com'\n\n    # git config remote.origin.url\n    git.config('remote.origin.url)  # https://github.com/slaveofcode/gitty.git\n\n\n#### Git Clone\n\nclone a repository.\n\n    from gitty import Gitty\n    Gitty.clone('https://github.com/slaveofcode/gitty.git', 'path-clone-folder')\n\n#### Git Fetch\n\nfetch from remote server\n\n    from gitty import Gitty\n    git = Gitty('.')  # set repo path, default is on current directory \n    git.fetch()\n\n\n# Install\n    pip install gitty\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslaveofcode%2Fgitty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslaveofcode%2Fgitty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslaveofcode%2Fgitty/lists"}