diff --git a/README.md b/README.md
index 0e3cb09fe334060e1bcdcf95e14ba4492f5f9c95..14957c1277e1472cc0aa4e38cabd45cc5a3df6e4 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ Any device directly configured by `goSDN`
 You can install the latest release of `goSDN` locally using the `go get` command. Since the repository and some dependencies are not publicly available you have to modify your git config first:
 ```sh
 > git config --global url."git@code.fbi.h-da.de:".insteadOf "https://code.fbi.h-da.de"
-> go env -w GOPRIVATE=code.fbi.h-da.de/cocsn/*
+> go env -w GOPRIVATE=code.fbi.h-da.de/danet/*
 > go get code.fbi.h-da.de/danet/gosdn/cmd/gosdn
 ```
 
@@ -49,9 +49,9 @@ To install the development version you need to clone the repo and use `go instal
 ```sh
 # If you haven't cloned the repo yet
 > git config --global url."git@code.fbi.h-da.de:".insteadOf "https://code.fbi.h-da.de"
-> go env -w GOPRIVATE=code.fbi.h-da.de/cocsn/*
+> go env -w GOPRIVATE=code.fbi.h-da.de/danet/*
 > cd $GOPATH/src
-> git clone git@code.fbi.h-da.de:cocsn/gosdn.git
+> git clone git@code.fbi.h-da.de:danet/gosdn.git
 
 # checkout the develop branch (or any other branch)
 > cd $GOPATH/src/code.fbi.h-da.de/danet/gosdn