---
title: GitHub
kind: note
description: git repository hosting service
words: 145
readingMinutes: 1
created: '2024-08-17T18:22:24+02:00'
updated: '2026-07-14T14:37:41+02:00'
website: https://github.com/
---
## Link

<https://github.com/>

[Git](/notes/git) source code hosting service owned by [Microsoft](/notes/microsoft)
# Resources
- [Managing your profile README](https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/managing-your-profile-readme)
- [Code Automation With GitHub](https://levelup.video/tutorials/code-automation-with-github) (<span class="dead-link">course</span>)
## Learning
- [GitHub Skills](https://skills.github.com/)
- [GitHub Docs](https://docs.github.com/en)
- [GitHub Resources](https://resources.github.com/)
	- [Certifications](https://resources.github.com/learn/certifications/)
		- [OnVUE Technical Requirements](https://www.pearsonvue.com/content/dam/VUE/vue/en/documents/tech-specs/online-proctored/onvue-technical-requirements.pdf)
		- [Exam experience](https://www.pearsonvue.com/us/en/test-takers/resources.html)
- [Microsoft Learn](https://learn.microsoft.com/en-us/training/github/)
	- [Certification credentials](https://learn.microsoft.com/en-us/credentials/browse/?products=github)
## Webinars
- Roadmap Webinar Q1 2025
  

<div class="youtube-embed"><iframe src="https://www.youtube-nocookie.com/embed/IrG4Kn1Zr4c" title="GitHub Roadmap Webinar Q1 2025 (EMEA) - YouTube" loading="lazy" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>


## Copilot
- [Features](https://github.com/features/copilot)
- [Docs](https://docs.github.com/en/copilot/about-github-copilot/what-is-github-copilot)
	- [Viewing logs for GitHub Copilot in your environment](https://docs.github.com/copilot/troubleshooting-github-copilot/viewing-logs-for-github-copilot-in-your-environment)
- <span class="dead-link">Introduction to GitHub Copilot</span>
- [Get certified with GitHub Copilot](https://github.com/orgs/community/discussions/144443)
- [Research: quantifying GitHub Copilot’s impact on developer productivity and happiness](https://github.blog/news-insights/research/research-quantifying-github-copilots-impact-on-developer-productivity-and-happiness/)
- [Getting Started with GitHub Copilot](https://github.com/skills/getting-started-with-github-copilot)
- [Webinar: Styrk udviklernes produktivitet med GitHub Enterprise og Copilot](https://info.microsoft.com/ww-thankyou-boost-dev-productivity-with-github-enterprise-and-copilot-video.html?LCID=DA)
# FAQ
##### "Invalid value reference" in Chat Agent mode
I fixed this by toggling the `chat.agent.enabled` setting in [VS Code](/notes/vscode) settings.
## Search all of an org's code for a string
```shell
gh search code 'SEARCH_STRING' --owner ORG_NAME
```
## Create issue using CLI
```bash
gh issue create --repo OWNER/REPO
```

Running it without pre-filling `--title` and `--body` will launch the interactive prompts for title, body, labels, assignees, etc.
## What is the base branch the current PR is targeting?
```shell
gh pr view --json baseRefName --jq '.baseRefName'
```
