日記帳
本ページはプロモーションが含まれています
カテゴリー
Links
blog(ブログ)マスター
アンドロイドの巣
ゼロから始めるベランダ菜園
タイトル
ラジコン
2024年5月
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31

Search Results

タイトル

執筆:2024.04.01
編集:2024.04.01


結論
clone時に
--no-metadata
を指定したせいです

相互運用する場合はこのオプションは指定してはいけません



$ git svn dcommit

Unable to determine upstream SVN information from HEAD history.
Perhaps the repository is empty. at /usr/libexec/git-core/git-svn line 859.

$ git svn dcommit

Unable to determine upstream SVN information from HEAD history.
Perhaps the repository is empty. at C:/Program Files/Git/mingw64/libexec/git-core\git-svn line 916.

$ git config --list --local | grep svn

登録間違っていないし、なんだろうこのエラー

選択肢は2個

(1)このままgit運用する

このままgit運用に切り替えてsvn捨ててしまえば問題なし

(2)svnに直接書き込む
  1. gitで空ブランチに切り替える
  2. svn取り込んでチェックアウトする
  3. gitで同じリビジョンに強制上書き
    git checkout [SHA] -f
  4. git checkout master
  5. svn commit
今回はいろいろ削除とか追加の変更があるので
git svn dcommit させてほしい・・・

困った・・・

» Unable to determine upstream SVN information from HEAD history.'">続きを読む

カテゴリー: General
2024.04.01

タイトル

執筆:2023.12.28
編集:2023.12.28


セルフ証明書でエラー

$ git push origin --mirror
fatal: unable to access https:// : SSL certificate problem: self signed certificate

無視設定にする

$ git config --local http.sslVerify false

$ git push origin --mirror
2023.12.28

PR

[PR]