We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8193c93 commit c3f1239Copy full SHA for c3f1239
script/merge.clj
@@ -68,8 +68,10 @@
68
(ice/p [:yellow "Resolving conflicts in directory: " dir])
69
(doseq [file files-in-dir]
70
(ice/p [:yellow "Resolving file: " file])
71
- (ice/p [:yellow " - Checking out " strat ": | " (:out (p/sh "git" "checkout" strat file))])
72
- (ice/p [:yellow " - Adding file: | " (:out (p/sh "git" "add" file))])))))))))
+ (:out (p/sh "git" "checkout" strat file))
+ (ice/p [:yellow " - git checkout " strat " " file])
73
+ (:out (p/sh "git" "add" file))
74
+ (ice/p [:yellow " - git add " file])))))))))
75
76
(defn- update-and-merge-pr [source-branch target-branch pr-number merge-strategy]
77
(let [head-ref-name (u/head-ref-name source-branch target-branch)]
0 commit comments