LoginSignup
0
0

More than 5 years have passed since last update.

Gitリポジトリのコードを別のGitリポジトリにPushする

Last updated at Posted at 2017-12-15

自分のGitリポジトリで管理しているコードを、別のGitにPushする方法です(Functionsコードのリリースなど)。

git clone <My Git clone URL>
cd ./<クローンされたディレクトリのパス>
git remote add another-git <Another Git clone URL>
git push another-git master:master
  • <My Git clone URL> : 自分のGitリポジトリのURL.
  • <Another Git clone URL> : 別のGitリポジトリのURL.

参考

Azure IoT Hub から取得したリアルタイム センサー データの視覚化 – Web Apps | Microsoft Docs

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