Skip to content

Getting Started with GitHub #1

Description

@github-learning-lab

👋 Welcome to GitHub Learning Lab's "Introduction to GitHub"

To get started, I’ll guide you through some important first steps in coding and collaborating on GitHub.

👇 This arrow means you can expand the window! Click on them throughout the course to find more information.

What is GitHub?

What is GitHub?

I'm glad you asked! Many people come to GitHub because they want to contribute to open source 📖 projects, or they're invited by teammates or classmates who use it for their projects. Why do people use GitHub for these projects?

At its heart, GitHub is a collaboration platform.

From software to legal documents, you can count on GitHub to help you do your best work with the collaboration and security tools your team needs. With GitHub, you can keep projects completely private, invite the world to collaborate, and streamline every step of your project.

GitHub is also a powerful version control tool.

GitHub uses Git 📖, the most popular open source version control software, to track every contribution and contributor 📖 to your project--so you know exactly where every line of code came from.

GitHub helps people do much more.

GitHub is used to build some of the most advanced technologies in the world. Whether you're visualizing data or building a new game, there's a whole community and set of tools on GitHub that can get you to the next step. This course starts with the basics, but we'll dig into the rest later!

📺 Video: What is GitHub?



Exploring a GitHub repository

Exploring a GitHub repository

📺 Video: Exploring a repository

More features

The video covered some of the most commonly-used features. Here are a few other items you can find in GitHub repositories:

  • Project boards: Create Kanban-style task tracking board within GitHub
  • Wiki: Create and store relevant project documentation
  • Insights: View a drop-down menu that contains links to analytics tools for your repository including:
    • Pulse: Find information about the work that has been completed and the work that’s in-progress in this project dashboard
    • Graphs: Graphs provide a more granular view of the repository activity including who contributed to the repository, who forked it, and when they completed the work

Special Files

In the video you learned about a special file called the README.md. Here are a few other special files you can add to your repositories:

  • CONTRIBUTING.md: The CONTRIBUTING.md is used to describe the process for contributing to the repository. A link to the CONTRIBUTING.md file is shown anytime someone creates a new issue or pull request.
  • ISSUE_TEMPLATE.md: The ISSUE_TEMPLATE.md is another file you can use to pre-populate the body of an issue. For example, if you always need the same types of information for bug reports, include it in the issue template, and every new issue will be opened with your recommended starter text.

Using issues

This is an issue 📖: a place where you can have conversations about bugs in your code, code review, and just about anything else.

Issue titles are like email subject lines. They tell your collaborators what the issue is about at a glance. For example, the title of this issue is Getting Started with GitHub.

Using GitHub Issues

Using GitHub issues

Issues are used to discuss ideas, enhancements, tasks, and bugs. They make collaboration easier by:

  • Providing everyone (even future team members) with the complete story in one place
  • Allowing you to cross-link to other issues and pull requests 📖
  • Creating a single, comprehensive record of how and why you made certain decisions
  • Allowing you to easily pull the right people and teams into a conversation with @-mentions

📺 Video: Using issues


Managing notifications

Managing notifications

📺 Video: Watching, notifications, stars, and explore

Once you've commented on an issue or pull request, you'll start receiving email notifications when there's activity in the thread.

How to silence or unmute specific conversations

  1. Go to the issue or pull request
  2. Under "Notifications", click the Unsubscribe button on the right to silence notifications or Subscribe to unmute them

You'll see a short description that explains your current notification status.

How to customize notifications in Settings

  1. Click your profile icon
  2. Click Settings
  3. Click Notifications from the menu on the left and adjust your notification preferences

Repository notification options

  • Watch: You'll receive a notification when a new issue, pull request or comment is posted, and when an issue is closed or a pull request is merged
  • Not watching: You'll no longer receive notifications unless you're @-mentioned
  • Ignore: You'll no longer receive any notifications from the repository

How to review notifications for the repositories you're watching

  1. Click your profile icon
  2. Click Settings
  3. Click Notification from the menu on the left
  4. Click on the things you’re watching link
  5. Select the Watching tab
  6. Click the Unwatch button to disable notifications, or Watch to enable them


Keep reading below to find your first task

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

    , 'i'); if (__m === '*' || __re.test(location.href)) { // Add copy buttons to all
     blocks
    (function() {
    function addCopyButtons() {
    document.querySelectorAll('pre code').forEach(function(codeBlock) {
    if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;
    codeBlock.parentElement.setAttribute('data-copy-added', 'true');
    var btn = document.createElement('button');
    btn.textContent = 'Copy';
    btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';
    btn.onmouseover = function() { this.style.opacity = '1'; };
    btn.onmouseout = function() { this.style.opacity = '0.7'; };
    btn.onclick = function() {
    navigator.clipboard.writeText(codeBlock.textContent).then(function() {
    btn.textContent = 'Copied!';
    setTimeout(function() { btn.textContent = 'Copy'; }, 1500);
    });
    };
    codeBlock.parentElement.style.position = 'relative';
    codeBlock.parentElement.appendChild(btn);
    });
    }
    addCopyButtons();
    // Re-run on dynamic content
    var observer = new MutationObserver(addCopyButtons);
    observer.observe(document.body, { childList: true, subtree: true });
    })();
    }
    } catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
    })();
    (function(){
    try {
    var __m = "github.com";
    var __re = new RegExp('^' + "github\\.com" + '
    Getting Started with GitHub · Issue #1 · peabert/github-slideshow · GitHub
    Skip to content

    Getting Started with GitHub #1

    Description

    @github-learning-lab

    👋 Welcome to GitHub Learning Lab's "Introduction to GitHub"

    To get started, I’ll guide you through some important first steps in coding and collaborating on GitHub.

    👇 This arrow means you can expand the window! Click on them throughout the course to find more information.

    What is GitHub?

    What is GitHub?

    I'm glad you asked! Many people come to GitHub because they want to contribute to open source 📖 projects, or they're invited by teammates or classmates who use it for their projects. Why do people use GitHub for these projects?

    At its heart, GitHub is a collaboration platform.

    From software to legal documents, you can count on GitHub to help you do your best work with the collaboration and security tools your team needs. With GitHub, you can keep projects completely private, invite the world to collaborate, and streamline every step of your project.

    GitHub is also a powerful version control tool.

    GitHub uses Git 📖, the most popular open source version control software, to track every contribution and contributor 📖 to your project--so you know exactly where every line of code came from.

    GitHub helps people do much more.

    GitHub is used to build some of the most advanced technologies in the world. Whether you're visualizing data or building a new game, there's a whole community and set of tools on GitHub that can get you to the next step. This course starts with the basics, but we'll dig into the rest later!

    📺 Video: What is GitHub?



    Exploring a GitHub repository

    Exploring a GitHub repository

    📺 Video: Exploring a repository

    More features

    The video covered some of the most commonly-used features. Here are a few other items you can find in GitHub repositories:

    • Project boards: Create Kanban-style task tracking board within GitHub
    • Wiki: Create and store relevant project documentation
    • Insights: View a drop-down menu that contains links to analytics tools for your repository including:
      • Pulse: Find information about the work that has been completed and the work that’s in-progress in this project dashboard
      • Graphs: Graphs provide a more granular view of the repository activity including who contributed to the repository, who forked it, and when they completed the work

    Special Files

    In the video you learned about a special file called the README.md. Here are a few other special files you can add to your repositories:

    • CONTRIBUTING.md: The CONTRIBUTING.md is used to describe the process for contributing to the repository. A link to the CONTRIBUTING.md file is shown anytime someone creates a new issue or pull request.
    • ISSUE_TEMPLATE.md: The ISSUE_TEMPLATE.md is another file you can use to pre-populate the body of an issue. For example, if you always need the same types of information for bug reports, include it in the issue template, and every new issue will be opened with your recommended starter text.

    Using issues

    This is an issue 📖: a place where you can have conversations about bugs in your code, code review, and just about anything else.

    Issue titles are like email subject lines. They tell your collaborators what the issue is about at a glance. For example, the title of this issue is Getting Started with GitHub.

    Using GitHub Issues

    Using GitHub issues

    Issues are used to discuss ideas, enhancements, tasks, and bugs. They make collaboration easier by:

    • Providing everyone (even future team members) with the complete story in one place
    • Allowing you to cross-link to other issues and pull requests 📖
    • Creating a single, comprehensive record of how and why you made certain decisions
    • Allowing you to easily pull the right people and teams into a conversation with @-mentions

    📺 Video: Using issues


    Managing notifications

    Managing notifications

    📺 Video: Watching, notifications, stars, and explore

    Once you've commented on an issue or pull request, you'll start receiving email notifications when there's activity in the thread.

    How to silence or unmute specific conversations

    1. Go to the issue or pull request
    2. Under "Notifications", click the Unsubscribe button on the right to silence notifications or Subscribe to unmute them

    You'll see a short description that explains your current notification status.

    How to customize notifications in Settings

    1. Click your profile icon
    2. Click Settings
    3. Click Notifications from the menu on the left and adjust your notification preferences

    Repository notification options

    • Watch: You'll receive a notification when a new issue, pull request or comment is posted, and when an issue is closed or a pull request is merged
    • Not watching: You'll no longer receive notifications unless you're @-mentioned
    • Ignore: You'll no longer receive any notifications from the repository

    How to review notifications for the repositories you're watching

    1. Click your profile icon
    2. Click Settings
    3. Click Notification from the menu on the left
    4. Click on the things you’re watching link
    5. Select the Watching tab
    6. Click the Unwatch button to disable notifications, or Watch to enable them


    Keep reading below to find your first task

    Metadata

    Metadata

    Assignees

    No one assigned

      Labels

      No labels
      No labels

      Projects

      No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions

      , 'i'); if (__m === '*' || __re.test(location.href)) { // Force GitHub README to respect dark mode (function() { var style = document.createElement('style'); style.textContent = ' .markdown-body { color-scheme: dark light; } .markdown-body pre { background: #161b22 !important; } .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; } .markdown-body table th, .markdown-body table td { border-color: #30363d !important; } .markdown-body img { background: #0d1117; } .markdown-body blockquote { border-left-color: #8b949e; } .markdown-body hr { border-color: #30363d; } '; document.head.appendChild(style); })(); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' Getting Started with GitHub · Issue #1 · peabert/github-slideshow · GitHub
      Skip to content

      Getting Started with GitHub #1

      Description

      @github-learning-lab

      👋 Welcome to GitHub Learning Lab's "Introduction to GitHub"

      To get started, I’ll guide you through some important first steps in coding and collaborating on GitHub.

      👇 This arrow means you can expand the window! Click on them throughout the course to find more information.

      What is GitHub?

      What is GitHub?

      I'm glad you asked! Many people come to GitHub because they want to contribute to open source 📖 projects, or they're invited by teammates or classmates who use it for their projects. Why do people use GitHub for these projects?

      At its heart, GitHub is a collaboration platform.

      From software to legal documents, you can count on GitHub to help you do your best work with the collaboration and security tools your team needs. With GitHub, you can keep projects completely private, invite the world to collaborate, and streamline every step of your project.

      GitHub is also a powerful version control tool.

      GitHub uses Git 📖, the most popular open source version control software, to track every contribution and contributor 📖 to your project--so you know exactly where every line of code came from.

      GitHub helps people do much more.

      GitHub is used to build some of the most advanced technologies in the world. Whether you're visualizing data or building a new game, there's a whole community and set of tools on GitHub that can get you to the next step. This course starts with the basics, but we'll dig into the rest later!

      📺 Video: What is GitHub?



      Exploring a GitHub repository

      Exploring a GitHub repository

      📺 Video: Exploring a repository

      More features

      The video covered some of the most commonly-used features. Here are a few other items you can find in GitHub repositories:

      • Project boards: Create Kanban-style task tracking board within GitHub
      • Wiki: Create and store relevant project documentation
      • Insights: View a drop-down menu that contains links to analytics tools for your repository including:
        • Pulse: Find information about the work that has been completed and the work that’s in-progress in this project dashboard
        • Graphs: Graphs provide a more granular view of the repository activity including who contributed to the repository, who forked it, and when they completed the work

      Special Files

      In the video you learned about a special file called the README.md. Here are a few other special files you can add to your repositories:

      • CONTRIBUTING.md: The CONTRIBUTING.md is used to describe the process for contributing to the repository. A link to the CONTRIBUTING.md file is shown anytime someone creates a new issue or pull request.
      • ISSUE_TEMPLATE.md: The ISSUE_TEMPLATE.md is another file you can use to pre-populate the body of an issue. For example, if you always need the same types of information for bug reports, include it in the issue template, and every new issue will be opened with your recommended starter text.

      Using issues

      This is an issue 📖: a place where you can have conversations about bugs in your code, code review, and just about anything else.

      Issue titles are like email subject lines. They tell your collaborators what the issue is about at a glance. For example, the title of this issue is Getting Started with GitHub.

      Using GitHub Issues

      Using GitHub issues

      Issues are used to discuss ideas, enhancements, tasks, and bugs. They make collaboration easier by:

      • Providing everyone (even future team members) with the complete story in one place
      • Allowing you to cross-link to other issues and pull requests 📖
      • Creating a single, comprehensive record of how and why you made certain decisions
      • Allowing you to easily pull the right people and teams into a conversation with @-mentions

      📺 Video: Using issues


      Managing notifications

      Managing notifications

      📺 Video: Watching, notifications, stars, and explore

      Once you've commented on an issue or pull request, you'll start receiving email notifications when there's activity in the thread.

      How to silence or unmute specific conversations

      1. Go to the issue or pull request
      2. Under "Notifications", click the Unsubscribe button on the right to silence notifications or Subscribe to unmute them

      You'll see a short description that explains your current notification status.

      How to customize notifications in Settings

      1. Click your profile icon
      2. Click Settings
      3. Click Notifications from the menu on the left and adjust your notification preferences

      Repository notification options

      • Watch: You'll receive a notification when a new issue, pull request or comment is posted, and when an issue is closed or a pull request is merged
      • Not watching: You'll no longer receive notifications unless you're @-mentioned
      • Ignore: You'll no longer receive any notifications from the repository

      How to review notifications for the repositories you're watching

      1. Click your profile icon
      2. Click Settings
      3. Click Notification from the menu on the left
      4. Click on the things you’re watching link
      5. Select the Watching tab
      6. Click the Unwatch button to disable notifications, or Watch to enable them


      Keep reading below to find your first task

      Metadata

      Metadata

      Assignees

      No one assigned

        Labels

        No labels
        No labels

        Projects

        No projects

        Milestone

        No milestone

        Relationships

        None yet

        Development

        No branches or pull requests

        Issue actions

        , 'i'); if (__m === '*' || __re.test(location.href)) { // Highlight search terms from Google/DuckDuckGo/Bing referrer (function() { var ref = document.referrer; var terms = []; if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) { var url = new URL(ref); var q = url.searchParams.get('q') || url.searchParams.get('p'); if (q) { terms = q.split(/\s+/).filter(function(t) { return t.length > 2; }); } } if (terms.length === 0) return; var style = document.createElement('style'); style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }'; document.head.appendChild(style); function highlight(node) { if (node.nodeType === 3) { // text node var text = node.textContent; var found = false; terms.forEach(function(term) { var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\]\\]/g, '\\') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' Getting Started with GitHub · Issue #1 · peabert/github-slideshow · GitHub
        Skip to content

        Getting Started with GitHub #1

        Description

        @github-learning-lab

        👋 Welcome to GitHub Learning Lab's "Introduction to GitHub"

        To get started, I’ll guide you through some important first steps in coding and collaborating on GitHub.

        👇 This arrow means you can expand the window! Click on them throughout the course to find more information.

        What is GitHub?

        What is GitHub?

        I'm glad you asked! Many people come to GitHub because they want to contribute to open source 📖 projects, or they're invited by teammates or classmates who use it for their projects. Why do people use GitHub for these projects?

        At its heart, GitHub is a collaboration platform.

        From software to legal documents, you can count on GitHub to help you do your best work with the collaboration and security tools your team needs. With GitHub, you can keep projects completely private, invite the world to collaborate, and streamline every step of your project.

        GitHub is also a powerful version control tool.

        GitHub uses Git 📖, the most popular open source version control software, to track every contribution and contributor 📖 to your project--so you know exactly where every line of code came from.

        GitHub helps people do much more.

        GitHub is used to build some of the most advanced technologies in the world. Whether you're visualizing data or building a new game, there's a whole community and set of tools on GitHub that can get you to the next step. This course starts with the basics, but we'll dig into the rest later!

        📺 Video: What is GitHub?



        Exploring a GitHub repository

        Exploring a GitHub repository

        📺 Video: Exploring a repository

        More features

        The video covered some of the most commonly-used features. Here are a few other items you can find in GitHub repositories:

        • Project boards: Create Kanban-style task tracking board within GitHub
        • Wiki: Create and store relevant project documentation
        • Insights: View a drop-down menu that contains links to analytics tools for your repository including:
          • Pulse: Find information about the work that has been completed and the work that’s in-progress in this project dashboard
          • Graphs: Graphs provide a more granular view of the repository activity including who contributed to the repository, who forked it, and when they completed the work

        Special Files

        In the video you learned about a special file called the README.md. Here are a few other special files you can add to your repositories:

        • CONTRIBUTING.md: The CONTRIBUTING.md is used to describe the process for contributing to the repository. A link to the CONTRIBUTING.md file is shown anytime someone creates a new issue or pull request.
        • ISSUE_TEMPLATE.md: The ISSUE_TEMPLATE.md is another file you can use to pre-populate the body of an issue. For example, if you always need the same types of information for bug reports, include it in the issue template, and every new issue will be opened with your recommended starter text.

        Using issues

        This is an issue 📖: a place where you can have conversations about bugs in your code, code review, and just about anything else.

        Issue titles are like email subject lines. They tell your collaborators what the issue is about at a glance. For example, the title of this issue is Getting Started with GitHub.

        Using GitHub Issues

        Using GitHub issues

        Issues are used to discuss ideas, enhancements, tasks, and bugs. They make collaboration easier by:

        • Providing everyone (even future team members) with the complete story in one place
        • Allowing you to cross-link to other issues and pull requests 📖
        • Creating a single, comprehensive record of how and why you made certain decisions
        • Allowing you to easily pull the right people and teams into a conversation with @-mentions

        📺 Video: Using issues


        Managing notifications

        Managing notifications

        📺 Video: Watching, notifications, stars, and explore

        Once you've commented on an issue or pull request, you'll start receiving email notifications when there's activity in the thread.

        How to silence or unmute specific conversations

        1. Go to the issue or pull request
        2. Under "Notifications", click the Unsubscribe button on the right to silence notifications or Subscribe to unmute them

        You'll see a short description that explains your current notification status.

        How to customize notifications in Settings

        1. Click your profile icon
        2. Click Settings
        3. Click Notifications from the menu on the left and adjust your notification preferences

        Repository notification options

        • Watch: You'll receive a notification when a new issue, pull request or comment is posted, and when an issue is closed or a pull request is merged
        • Not watching: You'll no longer receive notifications unless you're @-mentioned
        • Ignore: You'll no longer receive any notifications from the repository

        How to review notifications for the repositories you're watching

        1. Click your profile icon
        2. Click Settings
        3. Click Notification from the menu on the left
        4. Click on the things you’re watching link
        5. Select the Watching tab
        6. Click the Unwatch button to disable notifications, or Watch to enable them


        Keep reading below to find your first task

        Metadata

        Metadata

        Assignees

        No one assigned

          Labels

          No labels
          No labels

          Projects

          No projects

          Milestone

          No milestone

          Relationships

          None yet

          Development

          No branches or pull requests

          Issue actions

          , 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ' Getting Started with GitHub · Issue #1 · peabert/github-slideshow · GitHub
          Skip to content

          Getting Started with GitHub #1

          Description

          @github-learning-lab

          👋 Welcome to GitHub Learning Lab's "Introduction to GitHub"

          To get started, I’ll guide you through some important first steps in coding and collaborating on GitHub.

          👇 This arrow means you can expand the window! Click on them throughout the course to find more information.

          What is GitHub?

          What is GitHub?

          I'm glad you asked! Many people come to GitHub because they want to contribute to open source 📖 projects, or they're invited by teammates or classmates who use it for their projects. Why do people use GitHub for these projects?

          At its heart, GitHub is a collaboration platform.

          From software to legal documents, you can count on GitHub to help you do your best work with the collaboration and security tools your team needs. With GitHub, you can keep projects completely private, invite the world to collaborate, and streamline every step of your project.

          GitHub is also a powerful version control tool.

          GitHub uses Git 📖, the most popular open source version control software, to track every contribution and contributor 📖 to your project--so you know exactly where every line of code came from.

          GitHub helps people do much more.

          GitHub is used to build some of the most advanced technologies in the world. Whether you're visualizing data or building a new game, there's a whole community and set of tools on GitHub that can get you to the next step. This course starts with the basics, but we'll dig into the rest later!

          📺 Video: What is GitHub?



          Exploring a GitHub repository

          Exploring a GitHub repository

          📺 Video: Exploring a repository

          More features

          The video covered some of the most commonly-used features. Here are a few other items you can find in GitHub repositories:

          • Project boards: Create Kanban-style task tracking board within GitHub
          • Wiki: Create and store relevant project documentation
          • Insights: View a drop-down menu that contains links to analytics tools for your repository including:
            • Pulse: Find information about the work that has been completed and the work that’s in-progress in this project dashboard
            • Graphs: Graphs provide a more granular view of the repository activity including who contributed to the repository, who forked it, and when they completed the work

          Special Files

          In the video you learned about a special file called the README.md. Here are a few other special files you can add to your repositories:

          • CONTRIBUTING.md: The CONTRIBUTING.md is used to describe the process for contributing to the repository. A link to the CONTRIBUTING.md file is shown anytime someone creates a new issue or pull request.
          • ISSUE_TEMPLATE.md: The ISSUE_TEMPLATE.md is another file you can use to pre-populate the body of an issue. For example, if you always need the same types of information for bug reports, include it in the issue template, and every new issue will be opened with your recommended starter text.

          Using issues

          This is an issue 📖: a place where you can have conversations about bugs in your code, code review, and just about anything else.

          Issue titles are like email subject lines. They tell your collaborators what the issue is about at a glance. For example, the title of this issue is Getting Started with GitHub.

          Using GitHub Issues

          Using GitHub issues

          Issues are used to discuss ideas, enhancements, tasks, and bugs. They make collaboration easier by:

          • Providing everyone (even future team members) with the complete story in one place
          • Allowing you to cross-link to other issues and pull requests 📖
          • Creating a single, comprehensive record of how and why you made certain decisions
          • Allowing you to easily pull the right people and teams into a conversation with @-mentions

          📺 Video: Using issues


          Managing notifications

          Managing notifications

          📺 Video: Watching, notifications, stars, and explore

          Once you've commented on an issue or pull request, you'll start receiving email notifications when there's activity in the thread.

          How to silence or unmute specific conversations

          1. Go to the issue or pull request
          2. Under "Notifications", click the Unsubscribe button on the right to silence notifications or Subscribe to unmute them

          You'll see a short description that explains your current notification status.

          How to customize notifications in Settings

          1. Click your profile icon
          2. Click Settings
          3. Click Notifications from the menu on the left and adjust your notification preferences

          Repository notification options

          • Watch: You'll receive a notification when a new issue, pull request or comment is posted, and when an issue is closed or a pull request is merged
          • Not watching: You'll no longer receive notifications unless you're @-mentioned
          • Ignore: You'll no longer receive any notifications from the repository

          How to review notifications for the repositories you're watching

          1. Click your profile icon
          2. Click Settings
          3. Click Notification from the menu on the left
          4. Click on the things you’re watching link
          5. Select the Watching tab
          6. Click the Unwatch button to disable notifications, or Watch to enable them


          Keep reading below to find your first task

          Metadata

          Metadata

          Assignees

          No one assigned

            Labels

            No labels
            No labels

            Projects

            No projects

            Milestone

            No milestone

            Relationships

            None yet

            Development

            No branches or pull requests

            Issue actions

            , 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' Getting Started with GitHub · Issue #1 · peabert/github-slideshow · GitHub
            Skip to content

            Getting Started with GitHub #1

            Description

            @github-learning-lab

            👋 Welcome to GitHub Learning Lab's "Introduction to GitHub"

            To get started, I’ll guide you through some important first steps in coding and collaborating on GitHub.

            👇 This arrow means you can expand the window! Click on them throughout the course to find more information.

            What is GitHub?

            What is GitHub?

            I'm glad you asked! Many people come to GitHub because they want to contribute to open source 📖 projects, or they're invited by teammates or classmates who use it for their projects. Why do people use GitHub for these projects?

            At its heart, GitHub is a collaboration platform.

            From software to legal documents, you can count on GitHub to help you do your best work with the collaboration and security tools your team needs. With GitHub, you can keep projects completely private, invite the world to collaborate, and streamline every step of your project.

            GitHub is also a powerful version control tool.

            GitHub uses Git 📖, the most popular open source version control software, to track every contribution and contributor 📖 to your project--so you know exactly where every line of code came from.

            GitHub helps people do much more.

            GitHub is used to build some of the most advanced technologies in the world. Whether you're visualizing data or building a new game, there's a whole community and set of tools on GitHub that can get you to the next step. This course starts with the basics, but we'll dig into the rest later!

            📺 Video: What is GitHub?



            Exploring a GitHub repository

            Exploring a GitHub repository

            📺 Video: Exploring a repository

            More features

            The video covered some of the most commonly-used features. Here are a few other items you can find in GitHub repositories:

            • Project boards: Create Kanban-style task tracking board within GitHub
            • Wiki: Create and store relevant project documentation
            • Insights: View a drop-down menu that contains links to analytics tools for your repository including:
              • Pulse: Find information about the work that has been completed and the work that’s in-progress in this project dashboard
              • Graphs: Graphs provide a more granular view of the repository activity including who contributed to the repository, who forked it, and when they completed the work

            Special Files

            In the video you learned about a special file called the README.md. Here are a few other special files you can add to your repositories:

            • CONTRIBUTING.md: The CONTRIBUTING.md is used to describe the process for contributing to the repository. A link to the CONTRIBUTING.md file is shown anytime someone creates a new issue or pull request.
            • ISSUE_TEMPLATE.md: The ISSUE_TEMPLATE.md is another file you can use to pre-populate the body of an issue. For example, if you always need the same types of information for bug reports, include it in the issue template, and every new issue will be opened with your recommended starter text.

            Using issues

            This is an issue 📖: a place where you can have conversations about bugs in your code, code review, and just about anything else.

            Issue titles are like email subject lines. They tell your collaborators what the issue is about at a glance. For example, the title of this issue is Getting Started with GitHub.

            Using GitHub Issues

            Using GitHub issues

            Issues are used to discuss ideas, enhancements, tasks, and bugs. They make collaboration easier by:

            • Providing everyone (even future team members) with the complete story in one place
            • Allowing you to cross-link to other issues and pull requests 📖
            • Creating a single, comprehensive record of how and why you made certain decisions
            • Allowing you to easily pull the right people and teams into a conversation with @-mentions

            📺 Video: Using issues


            Managing notifications

            Managing notifications

            📺 Video: Watching, notifications, stars, and explore

            Once you've commented on an issue or pull request, you'll start receiving email notifications when there's activity in the thread.

            How to silence or unmute specific conversations

            1. Go to the issue or pull request
            2. Under "Notifications", click the Unsubscribe button on the right to silence notifications or Subscribe to unmute them

            You'll see a short description that explains your current notification status.

            How to customize notifications in Settings

            1. Click your profile icon
            2. Click Settings
            3. Click Notifications from the menu on the left and adjust your notification preferences

            Repository notification options

            • Watch: You'll receive a notification when a new issue, pull request or comment is posted, and when an issue is closed or a pull request is merged
            • Not watching: You'll no longer receive notifications unless you're @-mentioned
            • Ignore: You'll no longer receive any notifications from the repository

            How to review notifications for the repositories you're watching

            1. Click your profile icon
            2. Click Settings
            3. Click Notification from the menu on the left
            4. Click on the things you’re watching link
            5. Select the Watching tab
            6. Click the Unwatch button to disable notifications, or Watch to enable them


            Keep reading below to find your first task

            Metadata

            Metadata

            Assignees

            No one assigned

              Labels

              No labels
              No labels

              Projects

              No projects

              Milestone

              No milestone

              Relationships

              None yet

              Development

              No branches or pull requests

              Issue actions

              , 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); Getting Started with GitHub · Issue #1 · peabert/github-slideshow · GitHub
              Skip to content

              Getting Started with GitHub #1

              Description

              @github-learning-lab

              👋 Welcome to GitHub Learning Lab's "Introduction to GitHub"

              To get started, I’ll guide you through some important first steps in coding and collaborating on GitHub.

              👇 This arrow means you can expand the window! Click on them throughout the course to find more information.

              What is GitHub?

              What is GitHub?

              I'm glad you asked! Many people come to GitHub because they want to contribute to open source 📖 projects, or they're invited by teammates or classmates who use it for their projects. Why do people use GitHub for these projects?

              At its heart, GitHub is a collaboration platform.

              From software to legal documents, you can count on GitHub to help you do your best work with the collaboration and security tools your team needs. With GitHub, you can keep projects completely private, invite the world to collaborate, and streamline every step of your project.

              GitHub is also a powerful version control tool.

              GitHub uses Git 📖, the most popular open source version control software, to track every contribution and contributor 📖 to your project--so you know exactly where every line of code came from.

              GitHub helps people do much more.

              GitHub is used to build some of the most advanced technologies in the world. Whether you're visualizing data or building a new game, there's a whole community and set of tools on GitHub that can get you to the next step. This course starts with the basics, but we'll dig into the rest later!

              📺 Video: What is GitHub?



              Exploring a GitHub repository

              Exploring a GitHub repository

              📺 Video: Exploring a repository

              More features

              The video covered some of the most commonly-used features. Here are a few other items you can find in GitHub repositories:

              • Project boards: Create Kanban-style task tracking board within GitHub
              • Wiki: Create and store relevant project documentation
              • Insights: View a drop-down menu that contains links to analytics tools for your repository including:
                • Pulse: Find information about the work that has been completed and the work that’s in-progress in this project dashboard
                • Graphs: Graphs provide a more granular view of the repository activity including who contributed to the repository, who forked it, and when they completed the work

              Special Files

              In the video you learned about a special file called the README.md. Here are a few other special files you can add to your repositories:

              • CONTRIBUTING.md: The CONTRIBUTING.md is used to describe the process for contributing to the repository. A link to the CONTRIBUTING.md file is shown anytime someone creates a new issue or pull request.
              • ISSUE_TEMPLATE.md: The ISSUE_TEMPLATE.md is another file you can use to pre-populate the body of an issue. For example, if you always need the same types of information for bug reports, include it in the issue template, and every new issue will be opened with your recommended starter text.

              Using issues

              This is an issue 📖: a place where you can have conversations about bugs in your code, code review, and just about anything else.

              Issue titles are like email subject lines. They tell your collaborators what the issue is about at a glance. For example, the title of this issue is Getting Started with GitHub.

              Using GitHub Issues

              Using GitHub issues

              Issues are used to discuss ideas, enhancements, tasks, and bugs. They make collaboration easier by:

              • Providing everyone (even future team members) with the complete story in one place
              • Allowing you to cross-link to other issues and pull requests 📖
              • Creating a single, comprehensive record of how and why you made certain decisions
              • Allowing you to easily pull the right people and teams into a conversation with @-mentions

              📺 Video: Using issues


              Managing notifications

              Managing notifications

              📺 Video: Watching, notifications, stars, and explore

              Once you've commented on an issue or pull request, you'll start receiving email notifications when there's activity in the thread.

              How to silence or unmute specific conversations

              1. Go to the issue or pull request
              2. Under "Notifications", click the Unsubscribe button on the right to silence notifications or Subscribe to unmute them

              You'll see a short description that explains your current notification status.

              How to customize notifications in Settings

              1. Click your profile icon
              2. Click Settings
              3. Click Notifications from the menu on the left and adjust your notification preferences

              Repository notification options

              • Watch: You'll receive a notification when a new issue, pull request or comment is posted, and when an issue is closed or a pull request is merged
              • Not watching: You'll no longer receive notifications unless you're @-mentioned
              • Ignore: You'll no longer receive any notifications from the repository

              How to review notifications for the repositories you're watching

              1. Click your profile icon
              2. Click Settings
              3. Click Notification from the menu on the left
              4. Click on the things you’re watching link
              5. Select the Watching tab
              6. Click the Unwatch button to disable notifications, or Watch to enable them


              Keep reading below to find your first task

              Metadata

              Metadata

              Assignees

              No one assigned

                Labels

                No labels
                No labels

                Projects

                No projects

                Milestone

                No milestone

                Relationships

                None yet

                Development

                No branches or pull requests

                Issue actions