summaryrefslogtreecommitdiff
path: root/src/remote.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/remote.h')
-rw-r--r--src/remote.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/remote.h b/src/remote.h
index 3360b6249..5083b9912 100644
--- a/src/remote.h
+++ b/src/remote.h
@@ -14,6 +14,7 @@
struct git_remote {
char *name;
char *url;
+ char *pushurl;
git_vector refs;
struct git_refspec fetch;
struct git_refspec push;
@@ -24,4 +25,6 @@ struct git_remote {
check_cert;
};
+const char* git_remote__urlfordirection(struct git_remote *remote, int direction);
+
#endif