GitLab 리모트 저장소와 연결하고 Pull하기

GitLabリモートリポジトリに接続してプルする方法

GitLabリモートリポジトリとの接続

リモートリポジトリの確認:GitLab

既存のワーキングディレクトリに新しいリモートリポジトリを追加する git remote add <名>

git remote add origin [https://httpsアドレス]

originという名前で追加しました

リモートリポジトリにあるプロジェクトをローカルリポジトリにインポートする方法は3つあります。

  1. git pull
  2. git fetch
  3. git clone

git pullとは

git pull = git fetch + git merge

git pull [リモートリポジトリの名] [リモートリポジトリのブランチの名]

git pull 命令ができない場合は、"git pull origin master" コマンドを入力してみよう!

git pull pull origin master

プルしたいのですが、すでに資料があり、このようなエラーが発生した場合

fatal: refusing to merge unrelated histories

下のコードを入力して実行すればよい。

git pull origin master --allow-unrelated-histories