0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

herokuへのデプロイで使用したGitコマンドの備忘録

Posted at

はじめに

こんにちは、@syutechprojectです!

herokuへのデプロイで使用したGitコマンドをメモしておきます。

普段の業務ではGitTortoiseGitを使ってGUIで操作しているので、恥ずかしながらCLIで操作したことがあまりありませんでした。

herokuではGitを使ってデプロイするため、CLIで操作する機会があり嬉々として使いました(笑)

Gitコマンド

・ステージに変更を追加

$ git add .

・ローカルリポジトリに変更を記録

$ git commit -am "適当なコメントをここに書く"

・herokuにデプロイ

$ git push heroku master

以上となります。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?