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

More than 5 years have passed since last update.

Azure Web Appのコンソールでアプリを作成した場合にローカルgitでデプロイする方法

Posted at

ポータルから作成した場合に概要の箇所にFTPのアドレスしか表示されなかった。
どうやってコードを編集すればいいかわからなかったが以下の方法でgitを有効にできた。

$ az webapp deployment source config-local-git --name <app-name> --resource-group <group-name>
  • <app-name>がポータルから作成したアプリ名
  • <group-name>がリソースグループ名

画面を更新すると概要の欄に[GitクローンURL]が表示される。

あとはローカルの特定のディレクトリにCloneしてやればソースが編集可能。

Azureにプッシュする場合は

git remote add azure <GitクローンURL> #リモートの登録
git push azure master #プッシュ
0
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
0
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?