2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Cloud9からherokuへのpushを省略してみた

Last updated at Posted at 2018-04-21

経緯

簡易的なウェブアプリを作成する中で、意外とCloud9からHerokuへのpushが面倒だったので、Cloud9のbash上から呼び出しやすい用に1行でまとめてみた。
本格的な開発をしている訳ではないので、全ファイル一括で、コミットのコメントもtestになっている等適当に設定されているためご注意を…。
詳しいGitコマンドは【Git】基本コマンド
Git
が分かりやすかった。

実行コマンド

git add . && git commit -m "test" && git push heroku master
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?