Chargement…
fusen
Traduction ajoutée |
|
Aucun
Chaîne mise à jour dans le dépôt |
|
Description de la chaîne source
type: Fenced code block (bash)Drapeaux
no-wrap
git clone https://github.com/JohnXLivingston/peertube-plugin-livechat.git --recursive
cd peertube-plugin-livechat
# Install NPM dependencies and build the module for the first time:
npm install
# Build the plugin after a modification:
npm run build
# If you have a fork from the repository, add it as remote (example):
git remote add me git@github.com:MY_GITHUB_ACCOUNT/peertube-plugin-livechat.git
# Create a local branch for you developments, and checkout it (example):
git checkout my_development # Note: if an issue is associated, use fix_1234 as your branch name (where 1234 is the issue's number)
# To propose your modifications, push your branch to your repository (example):
git push --set-upstream me my_development
# Then go to your github repository with your web browser to propose the Pull Request (see additional instructions below)
git clone https://github.com/JohnXLivingston/peertube-plugin-livechat.git --recursive
cd peertube-plugin-livechat
# NPM依存関係をインストールし、初回のモジュールのビルドを実施します:
npm install
# 変更後、プラグインをビルドします:
npm run build
# リポジトリからフォークした場合、リモートとして追加してください (例):
git remote add me git@github.com:MY_GITHUB_ACCOUNT/peertube-plugin-livechat.git
# 開発のために、ローカルブランチを作成してください (例):
git checkout my_development # 注意: イシューに関連している場合は、ブランチ名に fix_1234 のような形式を付与します (1234はイシューの番号)
# 変更を提案するため、ブランチをリポジトリにプッシュしてください (例):
git push --set-upstream me my_development
# その後、WebブラウザーからGitHubリポジトリに移動し、プルリクエストを送ってください(詳しくは以下をお読みください)