shithub: front

Download patch

ref: 8b3a70dcd17bc1c12db4ac98ecf835705a2b56d5
parent: 66abd6e50a59b288eac0868a2bb352f84351927f
author: Ori Bernstein <ori@eigenstate.org>
date: Sat Dec 21 20:19:50 EST 2024

git/pull: fix typo

--- a/sys/src/cmd/git/pull
+++ b/sys/src/cmd/git/pull
@@ -66,7 +66,7 @@
 
 oldcommit=`{git/query $local}
 newcommit=`{git/query $remote}
-echo $remote':' $oldcommit '=>' `$newcommit
+echo $remote':' $oldcommit '=>' $newcommit
 git/branch -mnb $remote $local
 
 # The remote is directly ahead of the local, and we have
--