Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 3774e8a6 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

correct merge

parent 6b1cd636
No related branches found
No related tags found
No related merge requests found
...@@ -101,7 +101,7 @@ namespace VECTO_GIT.Commands ...@@ -101,7 +101,7 @@ namespace VECTO_GIT.Commands
foreach (var tag in tags) foreach (var tag in tags)
{ {
var tagPath = ConfigValue.REFERENCE_TAG_PATH + tag.FriendlyName; var tagPath = ConfigValue.REFERENCE_TAG_PATH + "/" + tag.FriendlyName;
repository.Network.Push(remoteRepository, tagPath, option); repository.Network.Push(remoteRepository, tagPath, option);
} }
} }
...@@ -125,7 +125,7 @@ namespace VECTO_GIT.Commands ...@@ -125,7 +125,7 @@ namespace VECTO_GIT.Commands
foreach (var branchName in branchNames) foreach (var branchName in branchNames)
{ {
var branchPath = ConfigValue.REFERENCE_HEAD_PATH + branchName; var branchPath = ConfigValue.REFERENCE_HEAD_PATH + "/" + branchName;
repository.Network.Push(remoteRepository, branchPath, option); repository.Network.Push(remoteRepository, branchPath, option);
} }
} }
......
...@@ -27,9 +27,9 @@ namespace VECTO_GIT ...@@ -27,9 +27,9 @@ namespace VECTO_GIT
public static int GIT_ID_LENGTH = 40; public static int GIT_ID_LENGTH = 40;
public static string REFERENCE_HEAD_PATH = "refs/heads/"; public static string REFERENCE_HEAD_PATH = "refs/heads";
public static string REFERENCE_TAG_PATH = "refs/tags/"; public static string REFERENCE_TAG_PATH = "refs/tags";
public static string REFERENCE_HEAD_REMOTE_PATH = "refs/remotes/";
public static string GIT_ID_FOLDER_NAME = "GIT_ID"; public static string GIT_ID_FOLDER_NAME = "GIT_ID";
public static string CERT_NR_FOLDER_NAME = "CERT_NR"; public static string CERT_NR_FOLDER_NAME = "CERT_NR";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment