diff options
author | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-02-28 12:17:13 +0100 |
---|---|---|
committer | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-02-28 12:17:13 +0100 |
commit | 9251df17028a86cb0a0d486a3cd7e0b3eb2947f6 (patch) | |
tree | d4be201b1334b91f69de1caf86f3bdbbfce84ab2 /cli | |
parent | 0e9dea19f856e256e609c3390e000760d2b2b95a (diff) | |
download | go-git-9251df17028a86cb0a0d486a3cd7e0b3eb2947f6.tar.gz |
Remove TODOs from documentation
Diffstat (limited to 'cli')
-rw-r--r-- | cli/go-git/upload_pack.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/go-git/upload_pack.go b/cli/go-git/upload_pack.go index 588e95b..e954d43 100644 --- a/cli/go-git/upload_pack.go +++ b/cli/go-git/upload_pack.go @@ -8,7 +8,6 @@ import ( "srcd.works/go-git.v4/plumbing/transport/file" ) -//TODO: usage: git upload-pack [--strict] [--timeout=<n>] <dir> type CmdUploadPack struct { cmd @@ -18,6 +17,7 @@ type CmdUploadPack struct { } func (CmdUploadPack) Usage() string { + //TODO: usage: git upload-pack [--strict] [--timeout=<n>] <dir> //TODO: git-upload-pack returns error code 129 if arguments are invalid. return fmt.Sprintf("usage: %s <git-dir>", os.Args[0]) } |