more git hooks (dvc pull/push/status)
See original GitHub issuecan we add more git hooks for dvc pull/push/status when git pull/push/status are run? ideally, most git commands would have a hook. this will make it much less likely for someone to forget to dvc push
after running a pipeline
Issue Analytics
- State:
- Created 5 years ago
- Reactions:9
- Comments:13 (11 by maintainers)
Top Results From Across the Web
install | Data Version Control - DVC
For more information about git hooks, refer to the git-scm documentation. Disable Git hooks. When you use dvc install , it creates three...
Read more >git - "dvc push" after several local commits - Stack Overflow
Is there a way to disable hooks after dvc install command? When you run dvc install , it creates three files under the...
Read more >Git Hooks - Git SCM
In most projects, that's .git/hooks . When you initialize a new repository with git init , Git populates the hooks directory with a...
Read more >DVC - Data Versioning - Laziness makes Great Engineer
Read DVC - Versioning Data and Models for more use cases ... You can install these git-hooks through dvc install . These hooks...
Read more >How to make a git hook for dvc? - Reddit
I'm running my git notebook through google colab but everysingle time I open my notebook in colab, I have to run: !pip install...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
+1 for adding a
git pull
hook. (Just commenting to show there’s still interest in this)I’m still interested in adding a
git pull
hook.It seems like we can at least just implement it for the
post-merge
hook? Forpost-rewrite
, I understand we can’t easily identify between actual rebase vspull --rebase
but this only affects users who are runninggit pull --rebase
, right?I think the majority of users just use
git pull
without--rebase
so can we can have it automaticallydvc pull
for at least these users?