transport-helper: release strbuf after use in process_connect_service()
[gitweb.git] / builtin / update-server-info.c
index 0d63c4498c0c10193846c020a2d76958bd12e1bd..873070e517090cbb21bf53cbc03088da6f85ec1f 100644 (file)
@@ -1,9 +1,10 @@
 #include "cache.h"
+#include "config.h"
 #include "builtin.h"
 #include "parse-options.h"
 
 static const char * const update_server_info_usage[] = {
-       "git update-server-info [--force]",
+       N_("git update-server-info [--force]"),
        NULL
 };
 
@@ -11,7 +12,7 @@ int cmd_update_server_info(int argc, const char **argv, const char *prefix)
 {
        int force = 0;
        struct option options[] = {
-               OPT__FORCE(&force, "update the info files from scratch"),
+               OPT__FORCE(&force, N_("update the info files from scratch")),
                OPT_END()
        };