{{template "base/alert" .}}
{{if .Repository.IsArchived}}
{{if not .Repository.IsArchived}}
{{end}}
{{else}}
{{end}}
{{if .Repository.IsBroken}}
{{ctx.Locale.Tr "repo.broken_message"}}
{{else if .CanWriteCode}}
{{ctx.Locale.Tr "repo.quick_guide"}}
{{ctx.Locale.Tr "repo.clone_this_repo"}} {{ctx.Locale.Tr "repo.clone_helper" "http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository"}}
{{ctx.Locale.Tr "repo.create_new_repo_command"}}
touch README.md
git init
{{if ne .Repository.DefaultBranch "master"}}git checkout -b {{.Repository.DefaultBranch}}{{end}}
git add README.md
git commit -m "first commit"
git remote add origin {{$.CloneButtonOriginLink.HTTPS}}
git push -u origin {{.Repository.DefaultBranch}}
{{ctx.Locale.Tr "repo.push_exist_repo"}}
git remote add origin {{$.CloneButtonOriginLink.HTTPS}}
git push -u origin {{.Repository.DefaultBranch}}
{{ctx.Locale.Tr "repo.empty_message"}}
{{end}}
{{template "repo/clone_script" .}}