diff --git a/.gobuild.yml b/.gobuild.yml
deleted file mode 100644
index f1b9b691c39..00000000000
--- a/.gobuild.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-filesets:
-    includes:
-        - conf
-        - etc
-        - public
-        - scripts
-        - templates
-        - LICENSE
-        - README.md
-        - README_ZH.md
-    excludes:
-        - \.git
-    depth: 5
-settings:
-        build: |
-            if test "$GOOS" = "windows" -a "$GOARCH" = "386"
-            then
-                go install -v
-            else
-                go get -v -tags "sqlite redis memcache cert" github.com/gogits/gogs
-                go install -v -tags "sqlite redis memcache cert"
-            fi
diff --git a/gogs.go b/gogs.go
index 7b212b72fda..2d34178d50d 100644
--- a/gogs.go
+++ b/gogs.go
@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.5.16.0301 Beta"
+const APP_VER = "0.5.16.0311 Beta"
 
 func init() {
 	runtime.GOMAXPROCS(runtime.NumCPU())
diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go
index 2902a92f2e0..a0928301885 100644
--- a/modules/auth/repo_form.go
+++ b/modules/auth/repo_form.go
@@ -32,13 +32,13 @@ func (f *CreateRepoForm) Validate(ctx *macaron.Context, errs binding.Errors) bin
 
 type MigrateRepoForm struct {
 	CloneAddr    string `binding:"Required"`
-	AuthUserName string `form:"auth_username"`
-	AuthPasswd   string `form:"auth_password"`
-	Uid          int64  `form:"uid" binding:"Required"`
-	RepoName     string `form:"repo_name" binding:"Required;AlphaDashDot;MaxSize(100)"`
-	Mirror       bool   `form:"mirror"`
-	Private      bool   `form:"private"`
-	Description  string `form:"desc" binding:"MaxSize(255)"`
+	AuthUsername string
+	AuthPassword string
+	Uid          int64  `binding:"Required"`
+	RepoName     string `binding:"Required;AlphaDashDot;MaxSize(100)"`
+	Mirror       bool
+	Private      bool
+	Description  string `binding:"MaxSize(255)"`
 }
 
 func (f *MigrateRepoForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
diff --git a/routers/api/v1/repo.go b/routers/api/v1/repo.go
index eb9908911f2..6bb78ba0181 100644
--- a/routers/api/v1/repo.go
+++ b/routers/api/v1/repo.go
@@ -196,7 +196,7 @@ func MigrateRepo(ctx *middleware.Context, form auth.MigrateRepoForm) {
 		}
 	}
 
-	// Remote address can be HTTPS URL or local path.
+	// Remote address can be HTTP/HTTPS URL or local path.
 	remoteAddr := form.CloneAddr
 	if strings.HasPrefix(form.CloneAddr, "http") {
 		u, err := url.Parse(form.CloneAddr)
@@ -204,8 +204,8 @@ func MigrateRepo(ctx *middleware.Context, form auth.MigrateRepoForm) {
 			ctx.HandleAPI(422, err)
 			return
 		}
-		if len(form.AuthUserName) > 0 || len(form.AuthPasswd) > 0 {
-			u.User = url.UserPassword(form.AuthUserName, form.AuthPasswd)
+		if len(form.AuthUsername) > 0 || len(form.AuthPassword) > 0 {
+			u.User = url.UserPassword(form.AuthUsername, form.AuthPassword)
 		}
 		remoteAddr = u.String()
 	} else if !com.IsDir(remoteAddr) {
diff --git a/routers/repo/repo.go b/routers/repo/repo.go
index 6b84a389d5d..37d07c563f6 100644
--- a/routers/repo/repo.go
+++ b/routers/repo/repo.go
@@ -181,7 +181,7 @@ func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) {
 		}
 	}
 
-	// Remote address can be HTTPS URL or local path.
+	// Remote address can be HTTP/HTTPS URL or local path.
 	remoteAddr := form.CloneAddr
 	if strings.HasPrefix(form.CloneAddr, "http") {
 		u, err := url.Parse(form.CloneAddr)
@@ -190,8 +190,8 @@ func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) {
 			ctx.RenderWithErr(ctx.Tr("form.url_error"), MIGRATE, &form)
 			return
 		}
-		if len(form.AuthUserName) > 0 || len(form.AuthPasswd) > 0 {
-			u.User = url.UserPassword(form.AuthUserName, form.AuthPasswd)
+		if len(form.AuthUsername) > 0 || len(form.AuthPassword) > 0 {
+			u.User = url.UserPassword(form.AuthUsername, form.AuthPassword)
 		}
 		remoteAddr = u.String()
 	} else if !com.IsDir(remoteAddr) {
diff --git a/templates/.VERSION b/templates/.VERSION
index bc7ed7d0305..cd8bf82a6bd 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.5.16.0301 Beta
\ No newline at end of file
+0.5.16.0311 Beta
\ No newline at end of file
diff --git a/templates/repo/migrate.tmpl b/templates/repo/migrate.tmpl
index 5869be1558b..cc23888db26 100644
--- a/templates/repo/migrate.tmpl
+++ b/templates/repo/migrate.tmpl
@@ -68,8 +68,8 @@
                 <span>{{.i18n.Tr "repo.migrate_type_helper" | Str2html}}</span>
             </div>
             <div class="field clear">
-                <label class="left" for="desc">{{.i18n.Tr "repo.repo_desc"}}</label>
-                <textarea class="ipt ipt-large ipt-radius {{if .Err_Description}}ipt-error{{end}}" id="desc" name="desc">{{.desc}}</textarea>
+                <label class="left" for="description">{{.i18n.Tr "repo.repo_desc"}}</label>
+                <textarea class="ipt ipt-large ipt-radius {{if .Err_Description}}ipt-error{{end}}" id="description" name="description">{{.description}}</textarea>
             </div>
             <div class="field">
                 <label for="repo-create-submit"></label>
diff --git a/wercker.yml b/wercker.yml
deleted file mode 100644
index 7c64bf0a91c..00000000000
--- a/wercker.yml
+++ /dev/null
@@ -1 +0,0 @@
-box: wercker/default