2016-04-07 12 views
2

Bitbuckedでキリル文字の枝を削除しようとしています。このメッセージが表示されるのは、[操作]> [削除]のいずれかを選択したときです。"ページが見つかりませんでした。要求したページが見つかりませんでした。私はキリル文字タイトルの削除ブランチ

git push origin --delete <my_cyrillic_titled_branch>

でCMDからそれを削除しようとすると、私はこのエラーを取得:

error: unable to delete '<my_cyrillic_titled_branch>': remote ref does not exist error: failed to push some refs to '<repo_url>'

UPDATE: 私はCentOSに7を使用してgitのバージョン1.8.3.1

どうすれば削除すればいいですか?

+0

するTry Gitのプッシュ起源::レフリー/ヘッド/ cyrillic_branch_name – gogstad

+0

いいえ、そうでないGitリポジトリとのBitbucket何の問題もなくキリルと仕事の両方があるため、Git Bashを試してみてください作業。 – Ivan

答えて

2

from cmd

Windowsのコマンドラインで作業しますか?それは問題だと思います。

[email protected]:~/development/bitbucket.org/storage> git --version                            
git version 2.7.4                                            

[email protected]:~/development/bitbucket.org/storage> git checkout -b ветка 
Switched to a new branch 'ветка' 

[email protected]:~/development/bitbucket.org/storage> git push -u origin ветка 
Password for 'https://*********@bitbucket.org': 
Total 0 (delta 0), reused 0 (delta 0) 
remote: 
remote: Create pull request for ветка: 
remote: https://bitbucket.org/*********/storage/pull-requests/new?source=%D0%B2%D0%B5%D1%82%D0%BA%D0%B0&t=1 
remote: 
To https://*********@bitbucket.org/*********/storage.git 
* [new branch]  ветка -> ветка                   
Branch ветка set up to track remote branch ветка from origin. 

enter image description here

[email protected]:~/development/bitbucket.org/storage> git push -u origin :ветка 
Password for 'https://*********@bitbucket.org':                                    
To https://*********@bitbucket.org/*********/storage.git                                
- [deleted]   ветка 

enter image description here

+0

いいえ、まだ動作していません。同じエラー – Ivan

+0

@Ivanブランチの名前を引用符で囲みてみてください。このようなSmthは 'git push origin:"ветка "'です。 –

+0

まだ動作していません:( – Ivan