We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I cannot make a PR since this needs two branches, one of which is a squashed branch: https://github.com/x-hgg-x/tzdb/tree/generated https://github.com/x-hgg-x/tzdb/tree/v0.5.x
Steps to reproduce:
generated
src/generated
git submodule add -f -b generated -- ./ src/generated
After modifying the generated data, we can then do the following :
cd src/generated git checkout generated git add . git commit --amend --no-edit # Don't keep history for the generated files git push cd ../.. git add src/generated git commit -m 'update' git push
The text was updated successfully, but these errors were encountered:
That's a good idea! Especially because my current squashing workflow breaks git blame. I will use a submodule for future commits
git blame
Sorry, something went wrong.
It seems that Cargo cannot update the submodule when using a git dependency in Cargo.toml (rust-lang/cargo#7992).
Cargo.toml
Fixed in rust-lang/cargo#11106.
Implemented in #127.
No branches or pull requests
I cannot make a PR since this needs two branches, one of which is a squashed branch:
https://github.com/x-hgg-x/tzdb/tree/generated
https://github.com/x-hgg-x/tzdb/tree/v0.5.x
Steps to reproduce:
generated
branch with only the generated data, and squash the branch to leave only one commit, then push it on Github.src/generated
folder and commit, then run the commandgit submodule add -f -b generated -- ./ src/generated
.After modifying the generated data, we can then do the following :
The text was updated successfully, but these errors were encountered: