Hello Travis!

> When I try to do a push, nothing happens (no messages, nothing). This
> happens regardless of whether I use the short-cut or the actual dvc-push
> command.  I have successfully committed files and done a pull using dvc, so
> things are hooked up correctly.
>
> Does dvc not support "hg push" yet?  If so, any ideas on how I should go
> about debugging this?
>
> Thanks, and again, awesome product. I really didn't want to learn different
> tools for git and mercurial. :)

This is the definition of dvc-push:

(defun dvc-push ()
  "Push changes to a remote location."
  (interactive)
  (let ((bookmarked-locations (dvc-bookmarks-current-push-locations)))
    (when bookmarked-locations
      (dolist (location bookmarked-locations)
        (message "pushing to: %s" location)
        (dvc-call "dvc-push" location)))))

It uses the bookmark feature. Push only works when you add your project
and the push location to the dvc bookmarks!

Stefan.

_______________________________________________
Dvc-dev mailing list
[email protected]
https://mail.gna.org/listinfo/dvc-dev

Reply via email to