Gerritにコードをプッシュしたいと思います。私はこれらの行を追加して、私の〜/ .gitconfigGerritにプッシュするgerritコマンドエラーを無効にしました
[remote "origin"]
url = ssh://[email protected]:29418/project/cloud
fetch = +refs/heads/*:refs/remotes/origin/*
push = refs/heads/*:refs/for/*
私は私のソースツリーに押し込み、私が得たエラー:
'git -c diff.mnemonicprefix=false -c core.quotepath=false -c credential.helper=sourcetree push -v origin refs/heads/master:refs/heads/refs/for/master
Pushing to ssh://[email protected]:29418/project/cloud
remote:
remote: Processing changes: refs: 1
remote: Processing changes: refs: 1, done
To ssh://[email protected]:29418/project/cloud
! [remote rejected] master -> refs/for/master (prohibited by Gerrit)
error: failed to push some refs to
ssh://[email protected]:29418/project/cloud
Pushing to ssh://[email protected]:29418/project/cloud
remote:
remote: Processing changes: refs: 1
remote: Processing changes: refs: 1, done
To ssh://[email protected]:29418/project/cloud! [remote rejected] master ->
refs/for/master (prohibited by Gerrit)
error: failed to push some refs to ssh://[email protected]:29418/project/cloud
Completed with errors, see above
私のsourcetreeがプッシュを送っているようですコマンドを2回実行します。また、コマンドが正しくありません:
git -c diff.mnemonicprefix=false -c core.quotepath=false -c credential.helper=sourcetree push -v origin master:refs/for/master
ところ私のミスは私の構成である。
git -c diff.mnemonicprefix=false -c core.quotepath=false -c credential.helper=sourcetree push -v origin refs/heads/master:refs/heads/refs/for/master
それは正しいコマンドがあるべきと思われますか?
ありがとうございます。
私のコマンドでsourcetreeがrefs/headsを追加したようです。私のコマンドでこのプレフィックスを削除するには? – user3034559