Changeset 96


Ignore:
Timestamp:
02/19/07 21:39:30 (18 years ago)
Author:
Magnus Henoch
Message:

Allow selecting which patches to pull

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified cl-darcs/trunk/pull.lisp ΒΆ

    r94 r96  
    3838      (dolist (p only-theirs)
    3939        (format t "~& - ~A" p))
    40       ;; XXX: This is where we pick which of their patches we want to
    41       ;; pull.
    42       (let* ((their-patches
     40      (let* ((all-their-patches
    4341              (mapcar (lambda (patchinfo)
    4442                        (read-patch-from-repo theirrepo patchinfo))
    4543                      only-theirs))
     44             (their-patches
     45              (if (y-or-n-p "Pull all patches?")
     46                  all-their-patches
     47                  (select-patches all-their-patches)))
    4648             (our-patches
    4749              (mapcar (lambda (patchinfo)
Note: See TracChangeset for help on using the changeset viewer.