【トラブル】【Git】Git 移行時におけるトラブル

■ はじめに

https://dk521123.hatenablog.com/entry/2022/02/10/000000

の作業などで発生したトラブルをまとめておく

目次

【1】エラー「fatal: Not a valid object name: 'master'」が表示

【1】エラー「fatal: Not a valid object name: 'master'」が表示

 git branch <branch_name>を実行した際に、
以下のエラー内容が表示されてしまう。

1)エラー内容

fatal: Not a valid object name: 'master'

2)原因

* 新しいブランチを作成するには最低1回は
 マスターブランチにコミットする必要があるため

3)対応案

# 空コミットでもいいので、一回コミットする
git commit --allow-empty -m "This is an initial empty commit for error"

参考文献

https://qiita.com/Sakuya_wd/items/b83161111b1b28098008
https://qiita.com/takuma-jpn/items/fe205ff59cfa10746aa8

【2】メモ

* 付与されている権限によっては、git push --mirror / git push 実行後に権限エラーが発生する可能性あり。
~~~~~~~
$ git push --mirror https://github.com/destination/your-repository2.git
remote: Write access to repository not granted.
fatal: unable to access 'https://github.com/destination/your-repository2.git/': 
The requested URL returned error: 403
~~~~~~~

関連記事

Github ~ 入門編 ~
https://dk521123.hatenablog.com/entry/2019/07/18/234652
リポジトリを別のGitに移行するには
https://dk521123.hatenablog.com/entry/2022/02/10/000000