{"id":26701969,"url":"https://github.com/thepante/tmux-git-autofetch","last_synced_at":"2026-04-27T21:32:09.064Z","repository":{"id":200016048,"uuid":"704270172","full_name":"thepante/tmux-git-autofetch","owner":"thepante","description":"Tmux git autofetch: Automatically fetches current opened git repositories on your tmux session","archived":false,"fork":false,"pushed_at":"2025-12-01T01:30:17.000Z","size":205,"stargazers_count":16,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-03T11:45:26.573Z","etag":null,"topics":["git","shell","tmux"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/thepante.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-12T23:02:44.000Z","updated_at":"2025-12-01T01:30:20.000Z","dependencies_parsed_at":"2023-10-15T08:33:04.298Z","dependency_job_id":"6c7c74ef-edaf-4488-addb-ee00c203ca65","html_url":"https://github.com/thepante/tmux-git-autofetch","commit_stats":null,"previous_names":["thepante/tmux-git-autofetch"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thepante/tmux-git-autofetch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepante%2Ftmux-git-autofetch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepante%2Ftmux-git-autofetch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepante%2Ftmux-git-autofetch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepante%2Ftmux-git-autofetch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thepante","download_url":"https://codeload.github.com/thepante/tmux-git-autofetch/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepante%2Ftmux-git-autofetch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32356598,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"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","shell","tmux"],"created_at":"2025-03-27T02:31:28.565Z","updated_at":"2026-04-27T21:32:09.048Z","avatar_url":"https://github.com/thepante.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Your Git workflow with automated repository fetching\n\nThis plugin automates the process of fetching updates from remote git repositories, making your coding life a little bit smoother.\n\nUseful when you deal with git repositories that get frequent updates. Instead of the tedious 'git fetch' routine, this handle it\nfor you in the background.\n\n![demo](demo.gif)\n_(play the gif and look top-right just along with `master`: it fetches and the status got updated)_\n\n## Installation\n\nUsing [`tpm`](https://github.com/tmux-plugins/tpm/): on your `.tmux.conf` add this line:\n```sh\nset -g @plugin 'thepante/tmux-git-autofetch'\n```\nAfterward, install it by pressing `\u003cprefix\u003e + I`.\n\nThis installation adds a cron job and a zsh hook to automate the fetching process.\n\n## Usage\n\nOnce installed, your open repositories will be automatically fetched in the background every 3 minutes.\n\n---\n\n## Options\n\nYou can add the following options on your tmux config file:\n\n#### `@git-autofetch-skip-paths`\n\nDefines regex pattern to skip specific paths to autofetch.\u003cbr\u003e\nDefault: ` ` (empty)\u003cbr\u003e\n```bash\nset -g @git-autofetch-skip-paths \".*\"\n```\n#### `@git-autofetch-scan-paths`\n\nDefines regex pattern for paths to enable autofetching. Higher priority than `skip-paths` pattern.\u003cbr\u003e\nDefault: ` ` (empty)\u003cbr\u003e\n```bash\nset -g @git-autofetch-scan-paths \"~/Projects/.*|.*\\/probandoski\"\n```\n\n#### `@git-autofetch-frequency`\n\nSet the fetching interval in minutes.\u003cbr\u003e\nDefault: `3`\u003cbr\u003e\n```bash\nset -g @git-autofetch-frequency \"1\"\n```\n\n#### `@git-autofetch-logging`\n\nEnables or disables debug logging.\u003cbr\u003e\nDefault: `false`\u003cbr\u003e\n```bash\nset -g @git-autofetch-logging \"true\"\n```\n\nWith the examples provided: it will write the logging file, scan every minute, and also would autofetch only those repositories\ninside `~/Projects` and the `anywhere/probandoski` one.\n\n## Notes\n- This plugin only fetches updates; it does not perform git pulls nor display info about it.\u003cbr\u003eYou can display the status using\n  any method you prefer. For instance, you can integrate it with [gitmux](https://github.com/arl/gitmux) for your tmux status bar.\n- For private repositories: ensure that your SSH credentials are correctly configured to avoid fetching rejections.\n\n## Motivation\nI work with multiples repositories that are frequently updated. I sticked with vscode mainly for its auto-fetch feature.\nI haven't come across a comparable solution for the terminal, so I made this plugin for tmux to ensure that I can work without\nconcerns about overlooking any changes in the repositories.\n\nFeel free to leave feedback or any other type of contribution.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthepante%2Ftmux-git-autofetch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthepante%2Ftmux-git-autofetch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthepante%2Ftmux-git-autofetch/lists"}