1
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 3 years have passed since last update.

git clone リモートリポジトリからクローンを作成する(macOS)

Last updated at Posted at 2020-11-17

##ターミナルでリモートリポジトリから、クローンを作成する(かなりはまりました笑)
環境
macOS Big Sur(バージョン11.0.1)
git (git version 2.29.2)

###エラー内容

ターミナル
ss@saaaMPro Desktop % git clone https://github.com/sakuma-s/git-command.git
Cloning into 'git-command'...
fatal: invalid branch name: init.defaultBranch = 

エラー内容を翻訳すると
fatal: invalid branch name: init.default Branch
致命的:無効なブランチ名:init.defaultブランチ

ここでかなりハマりました、、、

git branchで現在のブランチを確認

ターミナル
ss@saaaMPro Desktop % git branch
* master

と記載されており、リモートリポジトリのbranchを確認するとmainに設定している事を確認!早速変更!

git branch -m main

一応変更されているか確認

ss@saaaMPro Desktop % git branch
* main

再度git cloneを実行

ss@saaaMPro Desktop % git clone https://github.com/sakuma-s/git-command.git gittest05     
Cloning into 'gittest05'...
remote: Enumerating objects: 19, done.
remote: Counting objects: 100% (19/19), done.
remote: Compressing objects: 100% (9/9), done.
remote: Total 19 (delta 6), reused 19 (delta 6), pack-reused 0
Receiving objects: 100% (19/19), done.
Resolving deltas: 100% (6/6), done.

成功!
念の為、ローカルディレクトリも確認!

##今回のエラー原因
gitのデフォルトで設定されているbranch(master)と、リモートリポジトリのデフォルトbranch(main)が違ったため、上手くクローンが出来なかったのだと思います。。。
小さな事でもありがたいので、情報不足でしたらコメントからご指摘お願いいたします!

ブランチ名を変更する時に参考にしたサイト
gitのローカルのブランチ名を変更したい

助かりました!感謝いたします。

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