2016-06-30 19 views
0

以下の引用符は、醸造樽に寄付するための指示です。しかし、私は文章を理解できませんでした:、私は<>を入力すべきかどうかわからず、github_userは何ですか?GitHubを使って自家製キャスクに寄付するには?

電子メールアドレスは1つで、1つのGitHubアカウントに対して2つの名前があります。さらに、最後の文を入力すると:cask-repair --pull origin --push $github_user $outdated_cask。そこ2つのエラーです:the requested upstream branch 'Andy1984' does not exist、および

Error creating pull request: Unprocessable Entity (HTTP 422) 
Invalid value for "head" 

、結果は私が指示に従っかなり確信していThere was an error submitting the pull request. Have you forked the repo and made sure the pull and push remotes exist?です。なにが問題ですか?

# install and setup script - only needed once 
brew install vitorgalvao/tiny-scripts/cask-repair 
cask-repair --help 

# fork homebrew-cask to your account - only needed once 
cd "$(brew --repository)/Library/Taps/caskroom/homebrew-cask/Casks" 
hub fork 

# use to update <outdated_cask> 
outdated_cask='<the-cask-i-want-to-update>' 
github_user='<my-github-username>' 
cd "$(brew --repository)/Library/Taps/caskroom/homebrew-cask/Casks" 

cask-repair --pull origin --push $github_user $outdated_cask 
+0

'github_userは= '<私の-githubの-ユーザー名>' は'あなたのgithubのユーザ名が 'johndoe'であれば、あなたは' github_user = johndoe'に置き換えることを意味します。 'github_user'はgithubアカウントの名前です。あなたが覚えていない場合、githubのあなたのプロフィールページでそれを見ることができます。 – cel

+0

はい、私はあなたが言ったとおりですが、依然として: '要求された上流のブランチ' Andy1984 'は存在しません' –

+0

あなたは更新するキャスクの名前に 'outdated_cask'変数を設定しましたか? – cel

答えて

1

ドキュメントによれば、スクリプトを使用して既存のキャスクの新しいバージョンをプッシュすることもできます。

チェック:https://github.com/caskroom/homebrew-cask/blob/master/CONTRIBUTING.md#updating-a-cask

# install and setup script - only needed once 
brew install vitorgalvao/tiny-scripts/cask-repair 
cask-repair --help 

# use to update <outdated_cask> 
cask-repair <outdated_cask> 
関連する問題