Changeset 96
- Timestamp:
- 02/19/07 21:39:30 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified cl-darcs/trunk/pull.lisp ΒΆ
r94 r96 38 38 (dolist (p only-theirs) 39 39 (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 43 41 (mapcar (lambda (patchinfo) 44 42 (read-patch-from-repo theirrepo patchinfo)) 45 43 only-theirs)) 44 (their-patches 45 (if (y-or-n-p "Pull all patches?") 46 all-their-patches 47 (select-patches all-their-patches))) 46 48 (our-patches 47 49 (mapcar (lambda (patchinfo)
Note: See TracChangeset
for help on using the changeset viewer.