-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
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
Add pre/post hooks or git support #7
Comments
Do you think those would be enough for your use case ? |
Yeah.,. really don't add them if no one else wants them, if no one else wants this I can just use advices. |
Alright. I will leave this open in the case someone finds the same need. |
This could be useful for me too. I have Git sub-modules for some packages where I'm tracking development versions, so I'd totally use this to auto-update them too. |
Ok, I will the |
Haha, sounds good :D |
@rranelli This works perfectly for me with some way over-engineered Lisp to update my submodule(s, I thought I had more and wrote it to handle a list of them): (add-hook 'auto-package-update-after-hook
(lambda ()
(--each '(("magit" "git pull upstream next"))
(async-shell-command
(concat "cd " (f-expand (f-join "lisp" (car it)) user-emacs-directory)
" && " (cadr it)))))) |
I keep my packages/ dirs in local git repos for each emacs installation I use to be able to go back for troubleshooting or quickly backing out of temporarily broken packages.
Would be great to combine that with this mode in some way.
The text was updated successfully, but these errors were encountered: