Sha256: b4ed01acb6e1ff7794b172bb94acda1449aee91a37c453bad442175acd8a23d4
Contents?: true
Size: 769 Bytes
Versions: 4
Compression:
Stored size: 769 Bytes
Contents
<% repo_url = "git@#{request.host}:#{h params[:repo_name]}.git" %> <div id="repository-details"> <h3>Congratulations! Your repository was added!</h3> <p> If you have an existing local git repository you wish to push, try... </p> <code> cd your-repo git remote add origin <%= repo_url %> git push origin master</code> <p> Otherwise, to initialize an empty repository: </p> <code> mkdir your-repo cd your-repo git init touch .gitignore git add .gitignore git commit -m "Added blank .gitignore to initialize repository" git remote add origin <%= repo_url %> git push origin master</code> <p>And you should be good to go! <a href="#" onclick="$('#repository-details').slideUp(); return false;">(close instructions)</a></p> </div>
Version data entries
4 entries across 4 versions & 1 rubygems