git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Patch v2] help.c: Pull cmd_version out of this file.
@ 2010-09-01  3:10 Thiago Farina
  0 siblings, 0 replies; only message in thread
From: Thiago Farina @ 2010-09-01  3:10 UTC (permalink / raw)
  To: git; +Cc: jrnieder, gitster, pclouds, Thiago Farina

Promote cmd_version to a builtin, by moving it to its own file
in builtin/version.c

Signed-off-by: Thiago Farina <tfransosi@gmail.com>
---
 .gitignore        |    1 +
 Makefile          |    1 +
 builtin/version.c |    7 +++++++
 help.c            |    6 ------
 4 files changed, 9 insertions(+), 6 deletions(-)
 create mode 100644 builtin/version.c

diff --git a/.gitignore b/.gitignore
index fcdd822..5bdddc4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -151,6 +151,7 @@
 /git-var
 /git-verify-pack
 /git-verify-tag
+/git-version
 /git-web--browse
 /git-whatchanged
 /git-write-tree
diff --git a/Makefile b/Makefile
index b4745a5..0f3b6d8 100644
--- a/Makefile
+++ b/Makefile
@@ -738,6 +738,7 @@ BUILTIN_OBJS += builtin/upload-archive.o
 BUILTIN_OBJS += builtin/var.o
 BUILTIN_OBJS += builtin/verify-pack.o
 BUILTIN_OBJS += builtin/verify-tag.o
+BUILTIN_OBJS += builtin/version.o
 BUILTIN_OBJS += builtin/write-tree.o
 
 GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
diff --git a/builtin/version.c b/builtin/version.c
new file mode 100644
index 0000000..d98e260
--- /dev/null
+++ b/builtin/version.c
@@ -0,0 +1,7 @@
+#include "builtin.h"
+
+int cmd_version(int argc, const char **argv, const char *prefix)
+{
+	printf("git version %s\n", git_version_string);
+	return 0;
+}
diff --git a/help.c b/help.c
index 7f4928e..ad4f923 100644
--- a/help.c
+++ b/help.c
@@ -362,9 +362,3 @@ const char *help_unknown_cmd(const char *cmd)
 
 	exit(1);
 }
-
-int cmd_version(int argc, const char **argv, const char *prefix)
-{
-	printf("git version %s\n", git_version_string);
-	return 0;
-}
-- 
1.7.2.1.95.g3d045

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-09-01  3:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-01  3:10 [Patch v2] help.c: Pull cmd_version out of this file Thiago Farina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).