diff --git a/src/ChangeLog b/src/ChangeLog
index 1b40a59d0dc1de53cdec01683cc48972f509bdfe..0a837d8f881b4966fa4b68da403299b744548bae 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,8 @@
 2013-05-04  Per Cederqvist  <ceder@lysator.liu.se>
 
 	Some basic Git adjustments.
+	* commands1.el (lyskom-list-clients-collect): Handle Git client
+	versions.
 	* Makefile (vars.el): Use "Git" instead of "CVS" in CLIENTVERSION.
 	* .gitignore: Ignore files created by running "make".
 
diff --git a/src/commands1.el b/src/commands1.el
index 9ed4dc345b5eb9be2b61b6a67053dd324384f81f..5850d04332c8a969b19f3841981070437f3c36d1 100644
--- a/src/commands1.el
+++ b/src/commands1.el
@@ -3113,6 +3113,8 @@ prefix argument \(C-u -), list all sessions."
 		((null client) version)
 		((string-match "(.*; CVS)" version)
 		 (replace-in-string version "(.*; CVS)" "(from CVS)"))
+		((string-match "(.*; Git)" version)
+		 (replace-in-string version "(.*; Git)" "(from Git)"))
 		((string-match "\\s-*(build [^)]*)" version)
 		 (replace-in-string version "\\s-*(build [^)]*)" ""))
 		(t version)))