GitHub Foundaitons MS Learn Collections
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
「[[マイクロソフト系技術情報 Wiki>http://techinfoofmicros...
-[[戻る>GitHub Foundations]]
--[[GitHub Foundations - 学習ガイドPDF]]
--[[GitHub Foundations トレーニング]]
--[[GitHub Foundaitons ハンズオン]]
--GitHub Foundaitons MS Learn Collections
--[[LinkedIn Prepare for the GitHub Foundations Certifica...
--[[GitHub Foundations模擬試験]]
* 目次 [#bfce4623]
#contents
*概要 [#kd521a2c]
https://learn.microsoft.com/en-us/collections/o1njfe825p6...
|タイトル|時間|h
|[[Introduction to Git>#de0e49b1]]|31 min|
|[[Introduction to GitHub>#k4b244ef]]|1 hr 32 min|
|[[Introduction to GitHub's products>#cd2dc03c]]|23 min|
|[[Introduction to GitHub Copilot>#p8ce22c8]]|19 min|
|[[Code with GitHub Codespaces>#u4007747]]|27 min|
|[[Manage your work with GitHub Projects>#wd10a58e]]|36 m...
|[[Communicate effectively on GitHub using Markdown>#uba5...
|[[Contribute to an open-source project on GitHub>#m82d62...
|[[Manage an InnerSource program by using GitHub>#w8f6d3b...
|[[Maintain a secure repository by using GitHub best prac...
|[[Introduction to GitHub administration>#jbe2d7aa]]|27 m...
|[[Authenticate and authorize user identities on GitHub>#...
|[[Manage repository changes by using pull requests on Gi...
|[[Search and organize repository history by using GitHub...
|[[Using GitHub Copilot with Python>#yabe9a2e]]|22 min|
*詳細 [#j6883438]
以下、[[GitHub Foundaitons ハンズオン]]との差分情報のみを...
**[[Introduction to Git>https://learn.microsoft.com/en-us...
***ユニット [#f0eb6ee7]
-Introduction 3 min
-What is version control? 5 min
-Exercise - Try out Git 5 min
-Basic Git commands 10 min
***Knowledge check & summary [#o4552eb8]
-Knowledge check 5 min
--バージョン管理システム(VCS)≒ソフトウェア構成管理 (SCM...
--GitHub は、Web サイトまたはコマンド ライン ツールからア...
--(Gitホスティングサービスとか、そう言う、言い方はしてい...
-Summary 3 min
***動画 [#u7000435]
Introduction to Git Recap | Learn with Dr G(Git 入門の要...
https://www.youtube.com/watch?v=9uGS1ak_FGg~
>Git の基本操作を復習、Git の初心者向けに実践的なコマンド...
-1. Git のセットアップ
--ユーザー設定: git config を使用して、Git にユーザー名と...
--リポジトリの作成: git init で新しいリポジトリ(例: cats...
--ファイルの追加: index.html を作成し、git status で状態...
-2. ファイルの追跡とコミット
--git add . でファイルを追跡対象に追加。
--git commit -m "Initial commit" でバージョンを保存。
--git log で履歴を確認。
-3. 変更の追加とコミットの管理
--git diff で変更点を確認。
--git commit -a -m "Updated index.html" で変更を保存。
--.gitignore ファイルを追加し、不要なファイルを除外。
-4. ファイルの削除と復元
--間違って削除した場合:
---rm index.html の後、git checkout -- index.html で復元。
---git rm index.html をした場合は、git reset HEAD index.h...
-5. コミットの取り消しと修正
--直前のコミットの修正: git commit --amend --no-edit で微...
--誤った変更の取り消し: git revert HEAD で直前のコミット...
--特定のコミットに戻る:
---git checkout <commit-hash> . で指定のコミットに戻す。
---git reset --hard <commit-hash> で完全に巻き戻し可能。
-6. まとめと今後の予定
--Git の基本的な操作(セットアップ、変更の追跡、コミット...
--今後のライブ配信で、コミットの統合(squash)などの高度...
--詳細な学習モジュール: aka.ms/LearnWithDrG/IntroToGit
**[[Introduction to GitHub>https://learn.microsoft.com/en...
***ユニット [#d8ba54be]
-Introduction 2 min
-What is GitHub? 8 min
-Components of the GitHub flow 8 min
-GitHub is a collaborative platform 8 min
-GitHub platform management 4 min
-Exercise - A guided tour of GitHub 58 min~
https://github.com/skills/introduction-to-github
***Knowledge check & summary [#ucad6898]
-Knowledge check 3 min
--GitHub プロジェクトにバグを報告する最適な方法は問題(Is...
--プルリクエストの話1(ブランチ、修正、ブルリク、マージ)
--プルリクエストの話2(書込権限が無い場合はフォーク&ク...
-Summary 1 min
***Exercise [#jfb94fb4]
https://github.com/skills/introduction-to-github
**[[Introduction to GitHub's products>https://learn.micro...
***ユニット [#vc8a8387]
-Introduction 1 min
-GitHub accounts and plans 10 min
-GitHub Mobile and GitHub Desktop 4 min
-GitHub billing 3 min
***Knowledge check & summary [#i4a47cff]
-Knowledge check 4 min
--組織アカウントは共有アカウント、個人アカウントは個人用
--Enterpriseプランで複数の組織にまたがるユーザーとリポジ...
--チームで会社またはグループの構造を反映(カスケード アク...
-Summary 1 min
--アカウントの種類: 個人、組織、企業
--プラン: 個人と組織向けのFree、個人向けのPro、組織向けの...
--GitHub Mobile および GitHub Desktop で GitHub にアクセ...
--GitHub の請求と支払い(個人向け従量課金、組織向けサブス...
**[[Introduction to GitHub Copilot>https://learn.microsof...
***ユニット [#w42ffa17]
-Introduction 1 min
-GitHub Copilot, your AI pair programmer 2 min
-Interact with Copilot 2 min
-Set up, configure, and troubleshoot GitHub Copilot 7 min
-Exercise - Develop with AI-powered code suggestions by u...
https://github.com/skills/copilot-codespaces-vscode?tab=r...
***Knowledge check & summary [#d7b3e59f]
-Knowledge check 5 min
--AI ペア プログラマー
--現在のGitHub Copilotは、OpenAI Codexではなく、より新し...
--IDEとしてVS Code、Visual Studio、Neovim、JetBrainsをサ...
--Business と Enterprise:IP 補償と追加のセキュリティ層
--Enterprise:組織コードベースを使用した組織向けのパーソ...
-Summary 1 min
--プラン: 個人向けのFree、Pro、組織向けのBusiness、企業向...
--機能:Copilot for chat、for pull requests
--アクセス:Copilot for CLI、Command palette
--IntelliSense:Inline suggestions、Multiple suggestions
--対話:Inline chat、Copilot chat、
--生成:Comments to code、Explanations、Automated test ge...
***Exercise [#c1e48b9a]
https://github.com/skills/copilot-codespaces-vscode?tab=r...
**[[Code with GitHub Codespaces>https://learn.microsoft.c...
***ユニット [#mfc58f06]
-Introduction 1 min
-The Codespace lifecycle 6 min
-Personalize your Codespace 4 min
-Codespaces versus GitHub.dev editor 4 min
-Exercise - Code with Codespaces and Visual Studio Code 5...
https://github.com/skills/code-with-codespaces
***Knowledge check & summary [#a3153210]
-Knowledge check 5 min
-Summary 2 min~
ライフサイクルがポイント
--VMにリモート接続する方式でエディタ+デバッグ実行、環境...
--GitHub.com、Visual Studio Code、または GitHub CLI で作...
--GitHub.devはエディタの機能のみ提供している。
--リポジトリまたはブランチごとにリソース上限があり達する...
--ネットワーク接続が切れると操作できなくなるが再接続すれ...
--リポジトリは、Linuxシステム上の /workspaceディレクトリ...
***Exercise [#m20d8c5a]
https://github.com/skills/code-with-codespaces
**[[Manage your work with GitHub Projects>https://learn.m...
***ユニット [#yfc16d79]
-Introduction 1 min
-Projects versus Projects Classic 5 min
-How to create a project 5 min
-How to organize your project 5 min
-How to organize and automate your project 8 min
-Insight and automation with projects 8 min
***Knowledge check & summary [#xa2aa7fb]
-Knowledge check 3 min
--変更すると自動的に保存されるプロジェクト記述子はプロジ...
--Iteration field(反復フィールド)でアジャイルのイテレー...
--Single select field(単一選択フィールド)で優先度のグル...
--GitHub Actionsを使用せず簡単なBuilt-in automation(組み...
-Summary 1 min
--GitHub ProjectsはRedmine的な機能を持つGitHub上の一機能
**[[Communicate effectively on GitHub using Markdown>http...
***ユニット [#f3cc68c6]
-Introduction 2 min
-What is Markdown? 12 min
-Exercise - Communicate using Markdown 48 min~
https://github.com/skills/communicate-using-markdown
***Knowledge check & summary [#i4212e9b]
-Knowledge check 3 min
-Summary 1 min
***Exercise [#r641de8e]
https://github.com/skills/communicate-using-markdown
**[[Contribute to an open-source project on GitHub>https:...
***ユニット [#vb446d2c]
-Introduction 1 min
-Identify where you can help 5 min
-Contribute to an open-source repository 8 min
-Exercise - Create your first pull request 6 min~
https://github.com/firstcontributions/first-contributions...
-Next steps 2 min
-Knowledge check 4 min
--GitHub リポジトリでプロジェクトを支援できる場所を見つけ...
--プルリクエストでヘルプやレビューを依頼する場合、プルリ...
--リポジトリをフォークし、クローンし、変更をコミットし、...
-Summary 1 min
--貢献
--プルリクエスト
--GitHub Sponsors
***Exercise [#m26e210f]
https://github.com/firstcontributions/first-contributions...
**[[Manage an InnerSource program by using GitHub>https:/...
***ユニット [#y89c1122]
-Introduction 2 min
-How to manage a successful InnerSource program 8 min
-Exercise - InnerSource fundamentals 36 min~
https://githubtraining.github.io/innersource-theory/#/mea...
***Knowledge check & summary [#a5136136]
-Knowledge check 3 min
--InnerSourceプログラムは、アクセスが組織内のユーザーに限...
--テンプレート機能はInnerSourceでもOpenSourceでも使えるが...
-Summary 1 min
***Exercise [#qe9dd667]
https://githubtraining.github.io/innersource-theory/#/mea...
**[[Maintain a secure repository by using GitHub best pra...
***ユニット [#xd3079a5]
-Introduction 2 min
-How to maintain a secure GitHub repository 8 min
--安全な開発戦略の重要性(一般知識の問題でコードを正しく...
--あらゆる段階でのセキュリティ(開発ライフサイクルのすべ...
--セキュリティタブの機能(SECURITY.md、セキュリティアドバ...
--.gitignore を使用して機密ファイルをリポジトリから除外する
--リポジトリから機密データを削除する(誤ってパスワードを...
--ブランチ保護ルール(1 つ以上のブランチに対して特定の(C...
--CODEOWNERSファイルを追加(プル リクエストのマージにコー...
-Automated security 6 min
--セキュリティ上の脆弱性のある古い依存関係を検出して修正...
--リポジトリ依存関係グラフ
--Dependabot:アラート、依存関係の自動更新
--自動コードスキャン、機密データスキャン
-Exercise - Secure your repository's supply chain 15 min~
https://github.com/skills/secure-repository-supply-chain
***Knowledge check & summary [#d9d5cbfe]
-Knowledge check 3 min
-Summary 1 min
***Exercise [#r735c34b]
https://github.com/skills/secure-repository-supply-chain
**[[Introduction to GitHub administration>https://learn.m...
***ユニット [#s7438c72]
-Introduction 1 min
-What is GitHub administration? 6 min
--チームレベルでの管理
---新しいチームを作成
---親チームを選択または変更
---チームを削除または名前を変更
---チームに組織メンバーを追加または削除
---チームのメンバーシップをIdPグループと同期
---チーム/リポジトリに外部の共同作業者を追加または削除
---チームのページでチームディスカッションを有効/無効化
---組織内のチームの可視性を変更
---プルリクエストの自動コード レビュー割り当て
---リマインダーをスケジュール
---チームのプロフィール写真を設定
---チームレベルの管理のベストプラクティス
--組織レベルでの管理
---ユーザーを組織に招待 / 削除
---チーム編成しメンバーにチームメンテナー権限を付与
---組織のリポジトリに外部の共同作業者を追加または削除
---メンバーにリポジトリの権限レベルを付与
---特定のリポジトリのデフォルト権限レベルを設定
---組織のセキュリティを設定します。
---請求を設定、請求マネージャーを割り当て。
---カスタム スクリプトを使用して、リポジトリ情報を抽出
---カスタム スクリプトを使用して、組織全体の変更を適用
---推奨:ユーザーとリポジトリに対して 1 つの組織のみを設定
---注意:会社内の特定の制約により複数の組織を作成する場合~
・組織の複製、組織間の設定共有はできない(設定エラーの発...
・アプリケーションを複数の組織にインストールする必要があ...
--企業レベルでの管理
---SAMLによるハイブリッドIDP的な構築が可能
---企業に組織を追加 / 削除
---組織に課金を設定、課金マネージャーを割り当て。
---企業内のすべての組織、リポジトリ、メンバーに適用される...
---カスタム スクリプトを使用して、組織情報を抽出
---カスタム スクリプトを使用して、企業全体の変更を適用
-How does GitHub authentication work? 6 min
--認証オプション
---ユーザー名とパスワード
---個人アクセストークン(PAT、GitHub API用
---SSH キー(リモート接続用
---デプロイ キー(別の種類の SSH キー
--セキュリティ オプション
---2要素認証(TOTP、SMS、FIDO、GitHub Mobile
---LDAP、SAML
-How does GitHub organization and permissions work? 10 min
--リポジトリ権限
---読み取り
---トリアージ
---書き込み
---維持
---管理者
--チーム権限
---メンバー
---(チームの)メンテナー
--組織の権限~
以下のロールとデフォルトの権限を付与
---所有者
---メンバー
---モデレータ
---請求マネージャー
---セキュリティ管理者
---外部協力者
--エンタープライズ権限~
以下のロールとデフォルトのリポジトリ権限
---所有者
---メンバー
---請求マネージャー
--リポジトリのセキュリティと管理
---保護ルールを作成する
---CODEOWNERSファイルを追加する
---Insightsを使用してトラフィックを表示
***Knowledge check & summary [#abd65c03]
-Knowledge check 3 min
-Summary 1 min
**[[Authenticate and authorize user identities on GitHub>...
***ユニット [#y3e6a6e1]
-Introduction 2 min
-User identity and access management 4 min
--SAML SSOによる組織管理(ADFS、Entra ID、Okta、OneLogin...
-User authentication 10 min
--SAML SSOによる認証
--2FA、MFA(TOTP、SMS、FIDO、
-User authorization 7 min
--SCIM 経由の SAML SSO による認証~
(SCIM はIDプロビジョニング技術)
--SAML SSO を使用した SSHとPAT
-Team synchronization 5 min
--Entra ID または Okta
--GitHubチームをIdPグループに接続
--組織 / 企業アカウント でも利用可能
***Knowledge check & summary [#y10d0630]
-Knowledge check 3 min
--認証プロトコルの基本的な知識を理解しておくこと
--チーム同期はすべてのユーザーのプロフィールを読む権限が...
--SSWSはチーム情報にアクセスするためのWebAPIのトークンら...
-Summary 2 min
**[[Manage repository changes by using pull requests on G...
***ユニット [#qe3ff6ce]
-Introduction 2 min
-What are pull requests? 8 min
-Exercise - Reviewing pull requests 35 min~
https://github.com/skills/review-pull-requests
***Knowledge check & summary [#s0739478]
-Knowledge check 3 min
-Summary 1 min
**[[Search and organize repository history by using GitHu...
***ユニット [#d677dd0a]
-Introduction 2 min
-How to search and organize repository history by using G...
--グローバル検索(様々なエンティティが対象
--コンテキスト検索(問題やプルリクエストなどの特定のタブ...
--検索フィルターの使用
|クエリ|説明|h
|is:open is:issue assignee:@me|現在のユーザーに割り当てら...
|is:closed is:pr author:contoso|クローズされた@contosoに...
|is:pr sidebar in:comments|コメントで「サイドバー」と言及...
|is:open is:issue label:bug -linked:pr|プルリクエストにリ...
--git blame in GitHub
---git blame:特定のファイルの各行が「いつ・誰によって」...
---blame in GitHub:より堅牢なユーザー インターフェースで...
--issue、commitなどの相互リンク、メンション
-Exercise - Connect the dots in a GitHub repository 24 min~
https://github.com/skills/connect-the-dots
***Knowledge check & summary [#z05a851d]
-Knowledge check 3 min
-Summary 1 min
**[[Using GitHub Copilot with Python>https://learn.micros...
***ユニット [#k3a7b06b]
-Introduction 1 min
-What is GitHub Copilot? 2 min
-Exercise - Set up GitHub Copilot to work with Visual Stu...
-Use GitHub Copilot with Python 3 min
-Exercise - Update a Python web API with GitHub Copilot 5...
※ [[GitHub Copilot]]
***Exercise [#c358670f]
-GitHub Copilot Free アカウント
-GitHub Codespaces:https://github.com/codespaces/new/Mic...
***Knowledge check & summary [#l2446886]
-Knowledge check 5 min
-Summary 1 min
*参考 [#afcf89ee]
終了行:
「[[マイクロソフト系技術情報 Wiki>http://techinfoofmicros...
-[[戻る>GitHub Foundations]]
--[[GitHub Foundations - 学習ガイドPDF]]
--[[GitHub Foundations トレーニング]]
--[[GitHub Foundaitons ハンズオン]]
--GitHub Foundaitons MS Learn Collections
--[[LinkedIn Prepare for the GitHub Foundations Certifica...
--[[GitHub Foundations模擬試験]]
* 目次 [#bfce4623]
#contents
*概要 [#kd521a2c]
https://learn.microsoft.com/en-us/collections/o1njfe825p6...
|タイトル|時間|h
|[[Introduction to Git>#de0e49b1]]|31 min|
|[[Introduction to GitHub>#k4b244ef]]|1 hr 32 min|
|[[Introduction to GitHub's products>#cd2dc03c]]|23 min|
|[[Introduction to GitHub Copilot>#p8ce22c8]]|19 min|
|[[Code with GitHub Codespaces>#u4007747]]|27 min|
|[[Manage your work with GitHub Projects>#wd10a58e]]|36 m...
|[[Communicate effectively on GitHub using Markdown>#uba5...
|[[Contribute to an open-source project on GitHub>#m82d62...
|[[Manage an InnerSource program by using GitHub>#w8f6d3b...
|[[Maintain a secure repository by using GitHub best prac...
|[[Introduction to GitHub administration>#jbe2d7aa]]|27 m...
|[[Authenticate and authorize user identities on GitHub>#...
|[[Manage repository changes by using pull requests on Gi...
|[[Search and organize repository history by using GitHub...
|[[Using GitHub Copilot with Python>#yabe9a2e]]|22 min|
*詳細 [#j6883438]
以下、[[GitHub Foundaitons ハンズオン]]との差分情報のみを...
**[[Introduction to Git>https://learn.microsoft.com/en-us...
***ユニット [#f0eb6ee7]
-Introduction 3 min
-What is version control? 5 min
-Exercise - Try out Git 5 min
-Basic Git commands 10 min
***Knowledge check & summary [#o4552eb8]
-Knowledge check 5 min
--バージョン管理システム(VCS)≒ソフトウェア構成管理 (SCM...
--GitHub は、Web サイトまたはコマンド ライン ツールからア...
--(Gitホスティングサービスとか、そう言う、言い方はしてい...
-Summary 3 min
***動画 [#u7000435]
Introduction to Git Recap | Learn with Dr G(Git 入門の要...
https://www.youtube.com/watch?v=9uGS1ak_FGg~
>Git の基本操作を復習、Git の初心者向けに実践的なコマンド...
-1. Git のセットアップ
--ユーザー設定: git config を使用して、Git にユーザー名と...
--リポジトリの作成: git init で新しいリポジトリ(例: cats...
--ファイルの追加: index.html を作成し、git status で状態...
-2. ファイルの追跡とコミット
--git add . でファイルを追跡対象に追加。
--git commit -m "Initial commit" でバージョンを保存。
--git log で履歴を確認。
-3. 変更の追加とコミットの管理
--git diff で変更点を確認。
--git commit -a -m "Updated index.html" で変更を保存。
--.gitignore ファイルを追加し、不要なファイルを除外。
-4. ファイルの削除と復元
--間違って削除した場合:
---rm index.html の後、git checkout -- index.html で復元。
---git rm index.html をした場合は、git reset HEAD index.h...
-5. コミットの取り消しと修正
--直前のコミットの修正: git commit --amend --no-edit で微...
--誤った変更の取り消し: git revert HEAD で直前のコミット...
--特定のコミットに戻る:
---git checkout <commit-hash> . で指定のコミットに戻す。
---git reset --hard <commit-hash> で完全に巻き戻し可能。
-6. まとめと今後の予定
--Git の基本的な操作(セットアップ、変更の追跡、コミット...
--今後のライブ配信で、コミットの統合(squash)などの高度...
--詳細な学習モジュール: aka.ms/LearnWithDrG/IntroToGit
**[[Introduction to GitHub>https://learn.microsoft.com/en...
***ユニット [#d8ba54be]
-Introduction 2 min
-What is GitHub? 8 min
-Components of the GitHub flow 8 min
-GitHub is a collaborative platform 8 min
-GitHub platform management 4 min
-Exercise - A guided tour of GitHub 58 min~
https://github.com/skills/introduction-to-github
***Knowledge check & summary [#ucad6898]
-Knowledge check 3 min
--GitHub プロジェクトにバグを報告する最適な方法は問題(Is...
--プルリクエストの話1(ブランチ、修正、ブルリク、マージ)
--プルリクエストの話2(書込権限が無い場合はフォーク&ク...
-Summary 1 min
***Exercise [#jfb94fb4]
https://github.com/skills/introduction-to-github
**[[Introduction to GitHub's products>https://learn.micro...
***ユニット [#vc8a8387]
-Introduction 1 min
-GitHub accounts and plans 10 min
-GitHub Mobile and GitHub Desktop 4 min
-GitHub billing 3 min
***Knowledge check & summary [#i4a47cff]
-Knowledge check 4 min
--組織アカウントは共有アカウント、個人アカウントは個人用
--Enterpriseプランで複数の組織にまたがるユーザーとリポジ...
--チームで会社またはグループの構造を反映(カスケード アク...
-Summary 1 min
--アカウントの種類: 個人、組織、企業
--プラン: 個人と組織向けのFree、個人向けのPro、組織向けの...
--GitHub Mobile および GitHub Desktop で GitHub にアクセ...
--GitHub の請求と支払い(個人向け従量課金、組織向けサブス...
**[[Introduction to GitHub Copilot>https://learn.microsof...
***ユニット [#w42ffa17]
-Introduction 1 min
-GitHub Copilot, your AI pair programmer 2 min
-Interact with Copilot 2 min
-Set up, configure, and troubleshoot GitHub Copilot 7 min
-Exercise - Develop with AI-powered code suggestions by u...
https://github.com/skills/copilot-codespaces-vscode?tab=r...
***Knowledge check & summary [#d7b3e59f]
-Knowledge check 5 min
--AI ペア プログラマー
--現在のGitHub Copilotは、OpenAI Codexではなく、より新し...
--IDEとしてVS Code、Visual Studio、Neovim、JetBrainsをサ...
--Business と Enterprise:IP 補償と追加のセキュリティ層
--Enterprise:組織コードベースを使用した組織向けのパーソ...
-Summary 1 min
--プラン: 個人向けのFree、Pro、組織向けのBusiness、企業向...
--機能:Copilot for chat、for pull requests
--アクセス:Copilot for CLI、Command palette
--IntelliSense:Inline suggestions、Multiple suggestions
--対話:Inline chat、Copilot chat、
--生成:Comments to code、Explanations、Automated test ge...
***Exercise [#c1e48b9a]
https://github.com/skills/copilot-codespaces-vscode?tab=r...
**[[Code with GitHub Codespaces>https://learn.microsoft.c...
***ユニット [#mfc58f06]
-Introduction 1 min
-The Codespace lifecycle 6 min
-Personalize your Codespace 4 min
-Codespaces versus GitHub.dev editor 4 min
-Exercise - Code with Codespaces and Visual Studio Code 5...
https://github.com/skills/code-with-codespaces
***Knowledge check & summary [#a3153210]
-Knowledge check 5 min
-Summary 2 min~
ライフサイクルがポイント
--VMにリモート接続する方式でエディタ+デバッグ実行、環境...
--GitHub.com、Visual Studio Code、または GitHub CLI で作...
--GitHub.devはエディタの機能のみ提供している。
--リポジトリまたはブランチごとにリソース上限があり達する...
--ネットワーク接続が切れると操作できなくなるが再接続すれ...
--リポジトリは、Linuxシステム上の /workspaceディレクトリ...
***Exercise [#m20d8c5a]
https://github.com/skills/code-with-codespaces
**[[Manage your work with GitHub Projects>https://learn.m...
***ユニット [#yfc16d79]
-Introduction 1 min
-Projects versus Projects Classic 5 min
-How to create a project 5 min
-How to organize your project 5 min
-How to organize and automate your project 8 min
-Insight and automation with projects 8 min
***Knowledge check & summary [#xa2aa7fb]
-Knowledge check 3 min
--変更すると自動的に保存されるプロジェクト記述子はプロジ...
--Iteration field(反復フィールド)でアジャイルのイテレー...
--Single select field(単一選択フィールド)で優先度のグル...
--GitHub Actionsを使用せず簡単なBuilt-in automation(組み...
-Summary 1 min
--GitHub ProjectsはRedmine的な機能を持つGitHub上の一機能
**[[Communicate effectively on GitHub using Markdown>http...
***ユニット [#f3cc68c6]
-Introduction 2 min
-What is Markdown? 12 min
-Exercise - Communicate using Markdown 48 min~
https://github.com/skills/communicate-using-markdown
***Knowledge check & summary [#i4212e9b]
-Knowledge check 3 min
-Summary 1 min
***Exercise [#r641de8e]
https://github.com/skills/communicate-using-markdown
**[[Contribute to an open-source project on GitHub>https:...
***ユニット [#vb446d2c]
-Introduction 1 min
-Identify where you can help 5 min
-Contribute to an open-source repository 8 min
-Exercise - Create your first pull request 6 min~
https://github.com/firstcontributions/first-contributions...
-Next steps 2 min
-Knowledge check 4 min
--GitHub リポジトリでプロジェクトを支援できる場所を見つけ...
--プルリクエストでヘルプやレビューを依頼する場合、プルリ...
--リポジトリをフォークし、クローンし、変更をコミットし、...
-Summary 1 min
--貢献
--プルリクエスト
--GitHub Sponsors
***Exercise [#m26e210f]
https://github.com/firstcontributions/first-contributions...
**[[Manage an InnerSource program by using GitHub>https:/...
***ユニット [#y89c1122]
-Introduction 2 min
-How to manage a successful InnerSource program 8 min
-Exercise - InnerSource fundamentals 36 min~
https://githubtraining.github.io/innersource-theory/#/mea...
***Knowledge check & summary [#a5136136]
-Knowledge check 3 min
--InnerSourceプログラムは、アクセスが組織内のユーザーに限...
--テンプレート機能はInnerSourceでもOpenSourceでも使えるが...
-Summary 1 min
***Exercise [#qe9dd667]
https://githubtraining.github.io/innersource-theory/#/mea...
**[[Maintain a secure repository by using GitHub best pra...
***ユニット [#xd3079a5]
-Introduction 2 min
-How to maintain a secure GitHub repository 8 min
--安全な開発戦略の重要性(一般知識の問題でコードを正しく...
--あらゆる段階でのセキュリティ(開発ライフサイクルのすべ...
--セキュリティタブの機能(SECURITY.md、セキュリティアドバ...
--.gitignore を使用して機密ファイルをリポジトリから除外する
--リポジトリから機密データを削除する(誤ってパスワードを...
--ブランチ保護ルール(1 つ以上のブランチに対して特定の(C...
--CODEOWNERSファイルを追加(プル リクエストのマージにコー...
-Automated security 6 min
--セキュリティ上の脆弱性のある古い依存関係を検出して修正...
--リポジトリ依存関係グラフ
--Dependabot:アラート、依存関係の自動更新
--自動コードスキャン、機密データスキャン
-Exercise - Secure your repository's supply chain 15 min~
https://github.com/skills/secure-repository-supply-chain
***Knowledge check & summary [#d9d5cbfe]
-Knowledge check 3 min
-Summary 1 min
***Exercise [#r735c34b]
https://github.com/skills/secure-repository-supply-chain
**[[Introduction to GitHub administration>https://learn.m...
***ユニット [#s7438c72]
-Introduction 1 min
-What is GitHub administration? 6 min
--チームレベルでの管理
---新しいチームを作成
---親チームを選択または変更
---チームを削除または名前を変更
---チームに組織メンバーを追加または削除
---チームのメンバーシップをIdPグループと同期
---チーム/リポジトリに外部の共同作業者を追加または削除
---チームのページでチームディスカッションを有効/無効化
---組織内のチームの可視性を変更
---プルリクエストの自動コード レビュー割り当て
---リマインダーをスケジュール
---チームのプロフィール写真を設定
---チームレベルの管理のベストプラクティス
--組織レベルでの管理
---ユーザーを組織に招待 / 削除
---チーム編成しメンバーにチームメンテナー権限を付与
---組織のリポジトリに外部の共同作業者を追加または削除
---メンバーにリポジトリの権限レベルを付与
---特定のリポジトリのデフォルト権限レベルを設定
---組織のセキュリティを設定します。
---請求を設定、請求マネージャーを割り当て。
---カスタム スクリプトを使用して、リポジトリ情報を抽出
---カスタム スクリプトを使用して、組織全体の変更を適用
---推奨:ユーザーとリポジトリに対して 1 つの組織のみを設定
---注意:会社内の特定の制約により複数の組織を作成する場合~
・組織の複製、組織間の設定共有はできない(設定エラーの発...
・アプリケーションを複数の組織にインストールする必要があ...
--企業レベルでの管理
---SAMLによるハイブリッドIDP的な構築が可能
---企業に組織を追加 / 削除
---組織に課金を設定、課金マネージャーを割り当て。
---企業内のすべての組織、リポジトリ、メンバーに適用される...
---カスタム スクリプトを使用して、組織情報を抽出
---カスタム スクリプトを使用して、企業全体の変更を適用
-How does GitHub authentication work? 6 min
--認証オプション
---ユーザー名とパスワード
---個人アクセストークン(PAT、GitHub API用
---SSH キー(リモート接続用
---デプロイ キー(別の種類の SSH キー
--セキュリティ オプション
---2要素認証(TOTP、SMS、FIDO、GitHub Mobile
---LDAP、SAML
-How does GitHub organization and permissions work? 10 min
--リポジトリ権限
---読み取り
---トリアージ
---書き込み
---維持
---管理者
--チーム権限
---メンバー
---(チームの)メンテナー
--組織の権限~
以下のロールとデフォルトの権限を付与
---所有者
---メンバー
---モデレータ
---請求マネージャー
---セキュリティ管理者
---外部協力者
--エンタープライズ権限~
以下のロールとデフォルトのリポジトリ権限
---所有者
---メンバー
---請求マネージャー
--リポジトリのセキュリティと管理
---保護ルールを作成する
---CODEOWNERSファイルを追加する
---Insightsを使用してトラフィックを表示
***Knowledge check & summary [#abd65c03]
-Knowledge check 3 min
-Summary 1 min
**[[Authenticate and authorize user identities on GitHub>...
***ユニット [#y3e6a6e1]
-Introduction 2 min
-User identity and access management 4 min
--SAML SSOによる組織管理(ADFS、Entra ID、Okta、OneLogin...
-User authentication 10 min
--SAML SSOによる認証
--2FA、MFA(TOTP、SMS、FIDO、
-User authorization 7 min
--SCIM 経由の SAML SSO による認証~
(SCIM はIDプロビジョニング技術)
--SAML SSO を使用した SSHとPAT
-Team synchronization 5 min
--Entra ID または Okta
--GitHubチームをIdPグループに接続
--組織 / 企業アカウント でも利用可能
***Knowledge check & summary [#y10d0630]
-Knowledge check 3 min
--認証プロトコルの基本的な知識を理解しておくこと
--チーム同期はすべてのユーザーのプロフィールを読む権限が...
--SSWSはチーム情報にアクセスするためのWebAPIのトークンら...
-Summary 2 min
**[[Manage repository changes by using pull requests on G...
***ユニット [#qe3ff6ce]
-Introduction 2 min
-What are pull requests? 8 min
-Exercise - Reviewing pull requests 35 min~
https://github.com/skills/review-pull-requests
***Knowledge check & summary [#s0739478]
-Knowledge check 3 min
-Summary 1 min
**[[Search and organize repository history by using GitHu...
***ユニット [#d677dd0a]
-Introduction 2 min
-How to search and organize repository history by using G...
--グローバル検索(様々なエンティティが対象
--コンテキスト検索(問題やプルリクエストなどの特定のタブ...
--検索フィルターの使用
|クエリ|説明|h
|is:open is:issue assignee:@me|現在のユーザーに割り当てら...
|is:closed is:pr author:contoso|クローズされた@contosoに...
|is:pr sidebar in:comments|コメントで「サイドバー」と言及...
|is:open is:issue label:bug -linked:pr|プルリクエストにリ...
--git blame in GitHub
---git blame:特定のファイルの各行が「いつ・誰によって」...
---blame in GitHub:より堅牢なユーザー インターフェースで...
--issue、commitなどの相互リンク、メンション
-Exercise - Connect the dots in a GitHub repository 24 min~
https://github.com/skills/connect-the-dots
***Knowledge check & summary [#z05a851d]
-Knowledge check 3 min
-Summary 1 min
**[[Using GitHub Copilot with Python>https://learn.micros...
***ユニット [#k3a7b06b]
-Introduction 1 min
-What is GitHub Copilot? 2 min
-Exercise - Set up GitHub Copilot to work with Visual Stu...
-Use GitHub Copilot with Python 3 min
-Exercise - Update a Python web API with GitHub Copilot 5...
※ [[GitHub Copilot]]
***Exercise [#c358670f]
-GitHub Copilot Free アカウント
-GitHub Codespaces:https://github.com/codespaces/new/Mic...
***Knowledge check & summary [#l2446886]
-Knowledge check 5 min
-Summary 1 min
*参考 [#afcf89ee]
ページ名: