summaryrefslogtreecommitdiff
path: root/remote.go
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2015-06-28 00:34:54 +0200
committerCarlos Martín Nieto <[email protected]>2015-06-28 00:34:54 +0200
commitd400f1d5b2154f00f676b6b4e3c510f37de47573 (patch)
tree5139c49281f5ddfc5dc1fac107a14dccba73d5cd /remote.go
parent36e0a256fe79f87447bb730fda53e5cbc90eb47c (diff)
Update to libgit2 fa39975
Diffstat (limited to 'remote.go')
-rw-r--r--remote.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/remote.go b/remote.go
index 705bc0c..a52ff06 100644
--- a/remote.go
+++ b/remote.go
@@ -73,7 +73,7 @@ type FetchPrune uint
const (
// Use the setting from the configuration
- FetchPruneFallback FetchPrune = C.GIT_FETCH_PRUNE_FALLBACK
+ FetchPruneUnspecified FetchPrune = C.GIT_FETCH_PRUNE_UNSPECIFIED
// Force pruning on
FetchPruneOn FetchPrune = C.GIT_FETCH_PRUNE
// Force pruning off
@@ -85,7 +85,7 @@ type DownloadTags uint
const (
// Use the setting from the configuration.
- DownloadTagsFallback DownloadTags = C.GIT_REMOTE_DOWNLOAD_TAGS_FALLBACK
+ DownloadTagsUnspecified DownloadTags = C.GIT_REMOTE_DOWNLOAD_TAGS_UNSPECIFIED
// Ask the server for tags pointing to objects we're already
// downloading.
DownloadTagsAuto DownloadTags = C.GIT_REMOTE_DOWNLOAD_TAGS_AUTO