From d153501049717f6d3da5de7ffc74e87c35ee9af7 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Sat, 23 Sep 2017 12:56:42 -0400 Subject: [PATCH 1/2] repo status now shows the committer identity --- TGCommandLine/RepoCommands.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TGCommandLine/RepoCommands.cs b/TGCommandLine/RepoCommands.cs index e6b727d02f..597727a589 100644 --- a/TGCommandLine/RepoCommands.cs +++ b/TGCommandLine/RepoCommands.cs @@ -73,6 +73,7 @@ namespace TGCommandLine OutputProc("Remote: " + remote + " (" + remotehead + ")"); OutputProc("Branch: " + branch); OutputProc("HEAD: " + head); + OutputProc(String.Format("Committer Identity: {0} ({1})", Repo.GetCommitterName(), Repo.GetCommitterEmail())); } else { From df40a382178055087dcb83d818cfcc62d91a9473 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Sat, 23 Sep 2017 12:57:26 -0400 Subject: [PATCH 2/2] Tabs --- TGCommandLine/RepoCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TGCommandLine/RepoCommands.cs b/TGCommandLine/RepoCommands.cs index 597727a589..3b730d86ba 100644 --- a/TGCommandLine/RepoCommands.cs +++ b/TGCommandLine/RepoCommands.cs @@ -73,7 +73,7 @@ namespace TGCommandLine OutputProc("Remote: " + remote + " (" + remotehead + ")"); OutputProc("Branch: " + branch); OutputProc("HEAD: " + head); - OutputProc(String.Format("Committer Identity: {0} ({1})", Repo.GetCommitterName(), Repo.GetCommitterEmail())); + OutputProc(String.Format("Committer Identity: {0} ({1})", Repo.GetCommitterName(), Repo.GetCommitterEmail())); } else {