takaaki (owner)

Revisions

gist: 108553 Download_button fork
public
Public Clone URL: git://gist.github.com/108553.git
Embed All Files: show embed
sinatra #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sinatra_programs % git init
Initialized empty Git repository in /Users/takaaki/repos/sinatra_programs/.git/
sinatra_programs % git add .
sinatra_programs % git ci -m "Initial commit"
Created initial commit 3b18ec3: Initial commit
 2 files changed, 8 insertions(+), 0 deletions(-)
 create mode 100644 config.ru
 create mode 100644 myapp.rb
sinatra_programs(master) % heroku create --remote
Created http://high-mountain-16.heroku.com/ | git@heroku.com:high-mountain-16.git
Git remote heroku added
sinatra_programs(master) % cat .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
[remote "heroku"]
url = git@heroku.com:high-mountain-16.git
fetch = +refs/heads/*:refs/remotes/heroku/*
sinatra_programs(master) % heroku list