Git dependencies manager
Often run into problems when using git submodule? Then use a simple and useful tool called gitdeps
Clone this repository as example gitdeps project
git clone https://github.com/Nelonn/gitdeps
cd gitdeps
Run the getdeps command in a convenient way:
- Build it yourself with
go
installed in your system:
go build gitdeps.go
./gitdeps or .\gitdeps.exe
- Or use Homebrew for Linux or macOS:
brew tap Nelonn/tap
brew install gitdeps
gitdeps
If the command completes without errors then everything is ready! You can see the helloworld
submodule in the directory!
This repository contain this gitdeps.json
:
{
"helloworld": {
"url": "https://github.com/go-training/helloworld",
"branch": "master"
}
}
- Easy to use!
- Will save you from the frequent
HEAD detached ...
- Patches support!
- Does not clone standard submodules if there is an
gitdeps.json
in the repository - Zero dependencies!
Key of every module means relative path to module
Use prefix //
or #
to disable module, example //third_party/mbedtls
url
: URL to remote repositorybranch
: Fetch latest commit on the branchcommit
: SHA-1 of commit that you want to usetag
: Fetch specified tagpatches
: Optional array of patches
You can specify only one of branch
, commit
or tag
in a single module!
Real world example:
{
"third_party/mbedtls": {
"url": "https://github.com/Mbed-TLS/mbedtls",
"tag": "v3.6.0"
},
"third_party/fmt": {
"url": "https://github.com/fmtlib/fmt",
"commit": "c4f6fa71357b223b0ab8ac29577c6228fde8853d",
"patches": ["third_party/some_fmt.patch"]
}
}
Source code licensed under MIT License
The MIT License (MIT)
Copyright (c) 2024 Michael Neonov <two.nelonn at gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.