[Git] remote repository
Description:リモート・リポジトリの作成
remote repository
リポジトリが作成されました。
githubにリモート・リポジトリを作成したばかりの場合は、次のソース・コードを入力できます.$ git remote add origin https://github.com/osori-magu/gitfth.git
$ git remote -v
gitリモートストレージ.addはもう少し加えるという意味です
リモート・リポジトリを追加します.しかし、リモートストレージとは何ですか?Originというプライマリブランチのリモート・リポジトリを追加します.後続のアドレスは、リモート・リポジトリのgithub Webサイトのサーバを指します.$ git remote
origin
Originというリモート・リポジトリがあります.$ git remote -v
origin https://github.com/osori-magu/gitfth.git (fetch)
origin https://github.com/osori-magu/gitfth.git (push)
-vオプションを追加すると、より詳細なリポジトリのサーバアドレスさえ知ることができます.
1)でもオリジンという名前以外は、最初から別の名前で作ることはできないのでしょうか?
または2)別の名前のリモート・リポジトリを作成でき、そのリポジトリ内のサーバは上記のサーバ・アドレスと同じではありませんか?
いいですよ.下を見てください.$ git remote add friend https://github.com/osori-magu/gitfth.git
$ git remote -v
friend https://github.com/osori-magu/gitfth.git (fetch)
friend https://github.com/osori-magu/gitfth.git (push)
origin https://github.com/osori-magu/gitfth.git (fetch)
origin https://github.com/osori-magu/gitfth.git (push)
friendというリモート・リポジトリを持ち、同じサーバ・アドレスを持っています.
ローカルに登録されているリモート・リポジトリの削除
$ git remote remove friend # 로컬 등록된 원격 저장소 삭제
git push
$ git push -u origin master # 처음 push할떄 쓰임
$ git push $ 2번째 push할때는 git push만 사
標準は、常にローカルストレージ->remote(リモート)リポジトリにデータをプッシュします.
したがって、上記の意味は、現在のファイルとフォルダをローカル(master branch)からorigin(リモートストレージ)にプッシュ(アップロード)することです.
git pushの場合はIDを表示し、番号入力ではなく入力すればいいです.
2つ目はgit pushコマンドで、ローカル・リポジトリとリモート・リポジトリを接続している場合は、2つの単語を書くだけでリモート・リポジトリにアップロードできます.
git clone
$ cd ..
$ mkdir gitfth2
$ git clone https://github.com/osori-magu/gitfth.git
2つのローカル・リポジトリを1つのリモート・リポジトリに接続できます.
Reference
この問題について([Git] remote repository), 我々は、より多くの情報をここで見つけました
https://velog.io/@hyeseong-dev/Git-remote-repository
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
$ git remote add origin https://github.com/osori-magu/gitfth.git
$ git remote -v
$ git remote
origin
$ git remote -v
origin https://github.com/osori-magu/gitfth.git (fetch)
origin https://github.com/osori-magu/gitfth.git (push)
$ git remote add friend https://github.com/osori-magu/gitfth.git
$ git remote -v
friend https://github.com/osori-magu/gitfth.git (fetch)
friend https://github.com/osori-magu/gitfth.git (push)
origin https://github.com/osori-magu/gitfth.git (fetch)
origin https://github.com/osori-magu/gitfth.git (push)
$ git remote remove friend # 로컬 등록된 원격 저장소 삭제
$ git push -u origin master # 처음 push할떄 쓰임
$ git push $ 2번째 push할때는 git push만 사
$ cd ..
$ mkdir gitfth2
$ git clone https://github.com/osori-magu/gitfth.git
Reference
この問題について([Git] remote repository), 我々は、より多くの情報をここで見つけました https://velog.io/@hyeseong-dev/Git-remote-repositoryテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol