{"id":14961404,"url":"https://github.com/godotengine/godot-git-plugin","last_synced_at":"2025-04-12T14:57:27.320Z","repository":{"id":37076314,"uuid":"186986904","full_name":"godotengine/godot-git-plugin","owner":"godotengine","description":"Git implementation of the VCS interface in Godot","archived":false,"fork":false,"pushed_at":"2024-07-10T16:06:58.000Z","size":256832,"stargazers_count":764,"open_issues_count":86,"forks_count":78,"subscribers_count":26,"default_branch":"master","last_synced_at":"2025-04-03T14:11:23.065Z","etag":null,"topics":["gdextension","gdnative","git","godot","plugin"],"latest_commit_sha":null,"homepage":"","language":"C++","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/godotengine.png","metadata":{"funding":{"custom":"https://fund.godotengine.org/"},"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":"2019-05-16T08:36:05.000Z","updated_at":"2025-04-02T17:09:56.000Z","dependencies_parsed_at":"2024-07-07T04:25:43.804Z","dependency_job_id":"c5f651b3-929b-4856-95fb-bc2c104a6662","html_url":"https://github.com/godotengine/godot-git-plugin","commit_stats":{"total_commits":245,"total_committers":15,"mean_commits":"16.333333333333332","dds":"0.10612244897959189","last_synced_commit":"e86106b8c25ec1a65474184d9246f0fd0e4e850d"},"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godotengine%2Fgodot-git-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godotengine%2Fgodot-git-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godotengine%2Fgodot-git-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godotengine%2Fgodot-git-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/godotengine","download_url":"https://codeload.github.com/godotengine/godot-git-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248586250,"owners_count":21128997,"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":["gdextension","gdnative","git","godot","plugin"],"created_at":"2024-09-24T13:25:02.588Z","updated_at":"2025-04-12T14:57:27.300Z","avatar_url":"https://github.com/godotengine.png","language":"C++","funding_links":["https://fund.godotengine.org/"],"categories":[],"sub_categories":[],"readme":"[![C/C++ CI](https://github.com/godotengine/godot-git-plugin/actions/workflows/build.yml/badge.svg)](https://github.com/godotengine/godot-git-plugin/actions/workflows/build.yml)\n\n\u003cimg src=\"/icon.png\" width=\"25%\" /\u003e\n\n# Godot Git Plugin\n\nGit implementation of the Godot Engine VCS interface in Godot. We use [libgit2](https://libgit2.org) as our backend to simulate Git in code.\n\n\u003e Planned for the upcoming version of Godot. Look for other branches for support in other Godot releases.\n\n## Installation Instructions\n\n1.  Grab the platform binaries here: \u003chttps://github.com/godotengine/godot-git-plugin/releases\u003e\n2.  Then read the installation instructions: https://github.com/godotengine/godot-git-plugin/wiki\n\n## Build Instructions\n\nThis section onwards is only meant to be used if you intend to compile the plugin from source.\n\n### Required Tools\n\n- Full copy of the source code. Remember to use `git clone --recursive`.\n- [SCons](https://scons.org/pages/download.html) (v3.0.1+)\n- C++17 and C90 compilers detectable by SCons and present in `PATH`.\n- Platforms Specific Setup\n  - Windows\n    - No extra steps required other than setting up the compilers.\n  - MacOS\n    - For making universal builds targeting both Apple Silicon and x86_64, you can optionally run `build_openssl_universal_macos.sh` to build OpenSSL yourself and replace the already prebuilt libraries provided inside `thirdparty/openssl/`, otherwise, just run `brew install openssl@1.1` to use the prebuilt libraries provided in this repository.\n  - Linux\n    - Run `sudo apt-get install libssl-dev`, or your local package manager's equivalent.\n\n### Release Build\n\n```\nscons platform=\u003cplatform\u003e target=editor -j 6\n```\n\n\u003e You may get the gdextension dump yourself from Godot using the instructions in the next section, or use the ones provided in `godot-cpp/gdextension` or `ci/`.\n\nFor more build options, run `scons platform=\u003cplatform\u003e -h`\n\n## Dev builds\n\nWhen new features are being worked on for the Godot VCS Integration, the build process sometimes requires developers to make changes in the GDExtension API along with this plugin. This means we need to manually generate the GDExtension API from the custom Godot builds and use it to compile godot-cpp, and then finally link the resulting godot-cpp binary into this plugin.\n\nIf you need to use a custom GDExtension API:\n\n1. Dump the new bindings from the custom Godot build.\n\n```shell\ncd local/copy/of/godot/source\n.\\bin\\godot.xxx --headless --dump-gdextension-interface --dump-extension-api\n```\n\n2. Build the plugin along with the godot-cpp library.\n\n```\nscons platform=\u003cplatform\u003e target=editor generate_bindings=yes dev_build=yes -j 6\n```\n\n\u003e You only need to build godot-cpp once every change in the GDExtension API, hence, `generate_bindings=yes` should only be passed in during the first time after generating a new GDExtension API dump.\n\n3. Open the project provided inside `demo/` in the custom Godot build.\n\nTo view more options available while recompiling godot-git-plugin, run `scons platform=\u003cplatform\u003e -h`.\n\n---\n\n## License\n\nThis plugin is under the MIT License. Third-party notices are present in [THIRDPARTY.md](THIRDPARTY.md).\n\nOpenSSL License Attributions - This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/). This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgodotengine%2Fgodot-git-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgodotengine%2Fgodot-git-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgodotengine%2Fgodot-git-plugin/lists"}