{"id":13454033,"url":"https://github.com/git-ftp/git-ftp","last_synced_at":"2025-05-14T03:12:05.063Z","repository":{"id":8078168,"uuid":"9491249","full_name":"git-ftp/git-ftp","owner":"git-ftp","description":"Uses Git to upload only changed files to FTP servers.","archived":false,"fork":false,"pushed_at":"2024-10-20T16:29:50.000Z","size":2768,"stargazers_count":5541,"open_issues_count":123,"forks_count":697,"subscribers_count":146,"default_branch":"master","last_synced_at":"2025-05-13T17:08:57.247Z","etag":null,"topics":["deploy","ftp","git","git-ftp","shell","sync","upload"],"latest_commit_sha":null,"homepage":"https://git-ftp.github.io/","language":"Shell","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/git-ftp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-04-17T06:54:46.000Z","updated_at":"2025-05-12T06:12:26.000Z","dependencies_parsed_at":"2024-10-20T18:49:17.807Z","dependency_job_id":"ee3184e4-723f-4285-a0e0-f8a527f71b20","html_url":"https://github.com/git-ftp/git-ftp","commit_stats":{"total_commits":843,"total_committers":107,"mean_commits":7.878504672897196,"dds":0.5266903914590748,"last_synced_commit":"1431c0200b11387600d0fe0cc558daa638a6d260"},"previous_names":[],"tags_count":47,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/git-ftp%2Fgit-ftp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/git-ftp%2Fgit-ftp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/git-ftp%2Fgit-ftp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/git-ftp%2Fgit-ftp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/git-ftp","download_url":"https://codeload.github.com/git-ftp/git-ftp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254059521,"owners_count":22007771,"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":["deploy","ftp","git","git-ftp","shell","sync","upload"],"created_at":"2024-07-31T08:00:50.461Z","updated_at":"2025-05-14T03:11:59.918Z","avatar_url":"https://github.com/git-ftp.png","language":"Shell","funding_links":[],"categories":["Shell","HarmonyOS","Tools","Git and Version Control Systems"],"sub_categories":["Windows Manager","Command line"],"readme":"Git-ftp -- uploads to FTP servers the Git way\n=============================================\n\nIf you use Git and you need to upload your files to an FTP server,\nGit-ftp can save you some time and bandwidth by uploading only those files that\nchanged since the last upload.\n\nIt keeps track of the uploaded files by storing the commit id\nin a log file on the server. It uses Git to determine which local\nfiles have changed.\n\nYou can easily deploy another branch or go back in the Git history to upload\nan older version.\n\n```sh\n# Setup\ngit config git-ftp.url \"ftp://ftp.example.net:21/public_html\"\ngit config git-ftp.user \"ftp-user\"\ngit config git-ftp.password \"secr3t\"\n\n# Upload all files\ngit ftp init\n\n# Or if the files are already there\ngit ftp catchup\n\n# Work and deploy\necho \"new content\" \u003e\u003e index.txt\ngit commit index.txt -m \"Add new content\"\ngit ftp push\n# 1 file to sync:\n# [1 of 1] Buffered for upload 'index.txt'.\n# Uploading ...\n# Last deployment changed to ded01b27e5c785fb251150805308d3d0f8117387.\n```\n\nIf you encounter any problems, add the `-v` or `-vv` option to see more output.\nThe manual may answer some of your questions as well.\n\nFurther Reading\n---------------\n\n* Read the [manual](man/git-ftp.1.md) for more options, features and examples.\n* See the [installation instructions](INSTALL.md) for your system.\n* Checkout the [changelog](CHANGELOG.md).\n* Check [git-ftp issues on GitHub] for open issues.\n* Follow this project on twitter [@gitftp].\n\n* Deploy with [git-ftp and GitHub Actions](https://github.com/marketplace/actions/ftp-deploy)\n* Deploy with [git-ftp and Bitbucket Pipelines](https://www.youtube.com/watch?v=8HZhHtZebdw) (video tutorial).\n\nLimitations\n-----------\n\n* Windows and OS X: I am very limited in testing on Windows and OS X. Thanks\n  for helping me out fixing bugs on these platforms.\n* git-ftp as deployment tool: git-ftp was not designed as centralized\n  deployment tool. While a commit is being pushed and uploaded to the FTP\n  server, all files belonging to that revision must remain untouched until\n  git-ftp has successfully finished the upload. Otherwise, the contents of the\n  uploaded file will not match the contents of the file referenced in the\n  commit.\n\nContributions\n-------------\n\nDon't hesitate to improve this tool.\nDon't forget to add yourself to the [AUTHORS](AUTHORS) file.\nThe core functionality is unit tested using shunit2.\nYou can find the tests in `tests/`.\n\nCopyright\n---------\n\nThis application is licensed under [GNU General Public License, Version 3.0]\n\n[git-ftp issues on GitHub]: http://github.com/git-ftp/git-ftp/issues\n[GNU General Public License, Version 3.0]:\n http://www.gnu.org/licenses/gpl-3.0-standalone.html\n[@gitftp]: https://twitter.com/gitftp\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgit-ftp%2Fgit-ftp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgit-ftp%2Fgit-ftp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgit-ftp%2Fgit-ftp/lists"}