1
0
mirror of synced 2026-01-06 06:02:35 -05:00

Merge branch 'main' into rbgnk-patch-1

This commit is contained in:
Ramya Parimi
2021-11-03 03:25:37 -05:00
committed by GitHub
16950 changed files with 158 additions and 789704 deletions

View File

@@ -1,3 +1,10 @@
.fadeBottom {
background: linear-gradient(to top, var(--color-canvas-default), transparent);
}
/* Because of the sticky header */
.hashAnchor {
&:target {
scroll-margin-top: 75px;
}
}

View File

@@ -4,6 +4,7 @@ import { ArrowRightIcon } from '@primer/octicons-react'
import { useState } from 'react'
import { FeaturedTrack } from 'components/context/ProductSubLandingContext'
import { TruncateLines } from 'components/ui/TruncateLines'
import slugger from 'github-slugger'
import styles from './LearningTrack.module.scss'
type Props = {
@@ -17,6 +18,7 @@ export const LearningTrack = ({ track }: Props) => {
setNumVisible(track?.guides?.length || 0)
}
const { t } = useTranslation('product_sublanding')
const slug = track?.title ? slugger.slug(track?.title) : ''
return (
<div data-testid="learning-track" className="my-3 px-4 col-12 col-md-6">
@@ -24,7 +26,11 @@ export const LearningTrack = ({ track }: Props) => {
<div className="Box-header color-bg-subtle p-4 d-flex flex-1 flex-items-start flex-wrap">
<div className="d-flex flex-auto flex-items-start col-8 col-md-12 col-xl-8">
<div className="my-xl-0 mr-xl-3">
<h5 className="mb-3 color-text f3 text-semibold">{track?.title}</h5>
<h5 id={slug} className={cx('mb-3 color-text f3 text-semibold', styles.hashAnchor)}>
<a className="color-unset" href={`#${slug}`}>
{track?.title}
</a>
</h5>
<TruncateLines as="p" maxLines={3} className="color-text">
{track?.description}
</TruncateLines>

View File

@@ -14,7 +14,7 @@ topics:
- Set up
- Fundamentals
product: '{% data reusables.gated-features.codespaces %}'
shortTitle: Personalize your account
shortTitle: Personalize your codespaces
---

View File

@@ -22,6 +22,8 @@ topics:
{% data variables.product.prodname_codespaces %} provides you with the full development experience of {% data variables.product.prodname_vscode %}. {% data reusables.codespaces.use-visual-studio-features %}
{% data reusables.codespaces.links-to-get-started %}
![Codespace overview with annotations](/assets/images/help/codespaces/codespace-overview-annotated.png)
1. Side Bar - By default, this area shows your project files in the Explorer.

View File

@@ -19,7 +19,7 @@ shortTitle: Forward ports
Port forwarding gives you access to TCP ports running within your codespace. For example, if you're running a web application on a particular port in your codespace, you can forward that port. This allows you to access the application from the browser on your local machine for testing and debugging.
When an application running inside a codespace prints output to the terminal that contains a localhost URL, such as `http://localhost:PORT` or `http://127.0.0.1:PORT`, the port is automatically forwarded. If you're using {% data variables.product.prodname_github_codespaces %} in the browser or in {% data variable.product.prodname_vscode %}, the URL string in the terminal is converted into a link that you can click to view the web page on your local machine. By default, {% data variables.product.prodname_codespaces %} forwards ports using HTTP.
When an application running inside a codespace prints output to the terminal that contains a localhost URL, such as `http://localhost:PORT` or `http://127.0.0.1:PORT`, the port is automatically forwarded. If you're using {% data variables.product.prodname_codespaces %} in the browser or in {% data variables.product.prodname_vscode %}, the URL string in the terminal is converted into a link that you can click to view the web page on your local machine. By default, {% data variables.product.prodname_codespaces %} forwards ports using HTTP.
![Automatic port forwarding](/assets/images/help/codespaces/automatic-port-forwarding.png)

View File

@@ -18,10 +18,17 @@ shortTitle: Visual Studio Code
---
## About {% data variables.product.prodname_codespaces %} in {% data variables.product.prodname_vscode %}
You can use your local install of {% data variables.product.prodname_vscode %} to create, manage, work in, and delete codespaces. To use {% data variables.product.prodname_codespaces %} in {% data variables.product.prodname_vscode %}, you need to install the {% data variables.product.prodname_github_codespaces %} extension. For more information on setting up Codespaces in {% data variables.product.prodname_vscode %}, see "[Prerequisites](#prerequisites)."
By default, if you create a new codespace on {% data variables.product.prodname_dotcom_the_website %}, it will open in the browser. If you would prefer to open any new codespaces in {% data variables.product.prodname_vscode %} automatically, you can set your default editor to be {% data variables.product.prodname_vscode %}. For more information, see "[Setting your default editor for {% data variables.product.prodname_codespaces %}](/codespaces/managing-your-codespaces/setting-your-default-editor-for-codespaces)."
If you prefer to work in the browser, but want to continue using your existing {% data variables.product.prodname_vscode %} extensions, themes, and shortcuts, you can turn on Settings Sync. For more information, see "[Personalizing {% data variables.product.prodname_codespaces %} for your account](/codespaces/customizing-your-codespace/personalizing-codespaces-for-your-account#settings-sync)."
## Prerequisites
To develop in a codespace directly in {% data variables.product.prodname_vscode %}, you must sign into the {% data variables.product.prodname_github_codespaces %} extension. The {% data variables.product.prodname_github_codespaces %} extension requires {% data variables.product.prodname_vscode %} October 2020 Release 1.51 or later.
To develop in a codespace directly in {% data variables.product.prodname_vscode %}, you must install and sign into the {% data variables.product.prodname_github_codespaces %} extension with your {% data variables.product.product_name %} credentials. The {% data variables.product.prodname_github_codespaces %} extension requires {% data variables.product.prodname_vscode %} October 2020 Release 1.51 or later.
Use the {% data variables.product.prodname_vs %} Marketplace to install the [{% data variables.product.prodname_github_codespaces %}](https://marketplace.visualstudio.com/items?itemName=GitHub.codespaces) extension. For more information, see [Extension Marketplace](https://code.visualstudio.com/docs/editor/extension-gallery) in the {% data variables.product.prodname_vscode %} documentation.

View File

@@ -28,7 +28,7 @@ A codespace is a development environment that's hosted in the cloud. You can cus
## Using Codespaces
You can create a codespace from any branch or commit in your repository and begin developing using cloud-based compute resources.
You can create a codespace from any branch or commit in your repository and begin developing using cloud-based compute resources. {% data reusables.codespaces.links-to-get-started %}
To customize the runtimes and tools in your codespace, you can create a custom configuration to define an environment (or _dev container_) that is specific for your repository. Using a dev container allows you to specify a Docker environment for development with a well-defined tool and runtime stack that can reference an image, Dockerfile, or docker-compose. This means that anyone using the repository will have the same tools available to them when they create a codespace.
@@ -38,6 +38,6 @@ You can also personalize aspects of your codespace environment by using a public
## About billing for {% data variables.product.prodname_codespaces %}
For information on billing for {% data variables.product.prodname_codespaces %}, see "[Managing billing for {% data variables.product.prodname_codespaces %}](/billing/managing-billing-for-github-codespaces/about-billing-for-codespaces)."
For information on pricing, storage, and usage for {% data variables.product.prodname_codespaces %}, see "[Managing billing for {% data variables.product.prodname_codespaces %}](/billing/managing-billing-for-github-codespaces/about-billing-for-codespaces)."
{% data reusables.codespaces.codespaces-spending-limit-requirement %} For information on how organizations owners and billing managers can manage the spending limit for {% data variables.product.prodname_codespaces %} for an organization, see "[Managing your spending limit for {% data variables.product.prodname_codespaces %}](/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces)."

View File

@@ -135,7 +135,7 @@ The newly added `devcontainer.json` file defines a few properties that are descr
- **Terminal.integrated.shell.linux** - While bash is the default here, you could use other terminal shells by modifying this.
- **Extensions** - These are extensions included by default.
- **ms-dotnettools.csharp** - The Microsoft C# extension provides rich support for developing in C#, including features such as IntelliSense, linting, debugging, code navigation, code formatting, refactoring, variable explorer, test explorer, and more.
- **forwardPorts** - Any ports listed here will be forwarded automatically.
- **forwardPorts** - Any ports listed here will be forwarded automatically. For more information, see "[Forwarding ports in your codespace](/codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace)."
- **postCreateCommand** - If you want to run anything after you land in your codespace thats not defined in the Dockerfile, like `dotnet restore`, you can do that here.
- **remoteUser** - By default, youre running as the vscode user, but you can optionally set this to root.

View File

@@ -113,7 +113,7 @@ The newly added `devcontainer.json` file defines a few properties that are descr
- **Terminal.integrated.shell.linux** - While bash is the default here, you could use other terminal shells by modifying this.
- **Extensions** - These are extensions included by default.
- **Vscjava.vscode-java-pack** - The Java Extension Pack provides popular extensions for Java development to get you started.
- **forwardPorts** - Any ports listed here will be forwarded automatically.
- **forwardPorts** - Any ports listed here will be forwarded automatically. For more information, see "[Forwarding ports in your codespace](/codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace)."
- **postCreateCommand** - If you want to run anything after you land in your codespace thats not defined in the Dockerfile, you can do that here.
- **remoteUser** - By default, youre running as the `vscode` user, but you can optionally set this to `root`.

View File

@@ -107,7 +107,7 @@ The newly added `devcontainer.json` file defines a few properties that are descr
- **Terminal.integrated.shell.linux** - While bash is the default here, you could use other terminal shells by modifying this.
- **Extensions** - These are extensions included by default.
- **Dbaeumer.vscode-eslint** - ES lint is a great extension for linting, but for JavaScript there are a number of great Marketplace extensions you could also include.
- **forwardPorts** - Any ports listed here will be forwarded automatically.
- **forwardPorts** - Any ports listed here will be forwarded automatically. For more information, see "[Forwarding ports in your codespace](/codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace)."
- **postCreateCommand** - If you want to run anything after you land in your codespace thats not defined in the Dockerfile, you can do that here.
- **remoteUser** - By default, youre running as the vscode user, but you can optionally set this to root.

View File

@@ -127,7 +127,7 @@ The newly added `devcontainer.json` file defines a few properties that are descr
- **Terminal.integrated.shell.linux** - While bash is the default here, you could use other terminal shells by modifying this.
- **Extensions** - These are extensions included by default.
- **ms-python.python** - The Microsoft Python extension provides rich support for the Python language (for all actively supported versions of the language: >=3.6), including features such as IntelliSense, linting, debugging, code navigation, code formatting, refactoring, variable explorer, test explorer, and more.
- **forwardPorts** - Any ports listed here will be forwarded automatically.
- **forwardPorts** - Any ports listed here will be forwarded automatically. For more information, see "[Forwarding ports in your codespace](/codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace)."
- **postCreateCommand** - If you want to run anything after you land in your codespace thats not defined in the Dockerfile, like `pip3 install -r requirements`, you can do that here.
- **remoteUser** - By default, youre running as the `vscode` user, but you can optionally set this to `root`.

View File

@@ -1 +1 @@
You can forward ports in your codespace to test and debug your application.
You can forward ports in your codespace to test and debug your application. You can also manage the port protocol and share the port within your organization or publicly.

View File

@@ -0,0 +1 @@
To get started with {% data variables.product.prodname_codespaces %}, see "[Quickstart for {% data variables.product.prodname_codespaces %}](/codespaces/getting-started/quickstart)." To learn more about how {% data variables.product.prodname_codespaces %} works, see "[Deep dive into Codespaces](/codespaces/getting-started/deep-dive)."

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f3f352dfe6f4d54a43e8ba4a4f1e62588158c9ee1a721d7411333d85f6db4165
size 567909
oid sha256:71da4ef54c673c2cd0f5f931c6c28286c2290b589d88b5e7819fb93111cb7564
size 567770

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:71fd13e49cb9bcdc2460412e0f959712cfaedc720ac4fc14ffc765ec0e56c6e0
size 985580
oid sha256:d908082ee678be06e6181de8bffcd18a5ea11a409fd45f8a28ad71f95f5c7f57
size 985436

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ff24b07832cff76b970f90bba3f4b5e8ef5f09b079707bb2bf03b5ab28f21f07
size 501928

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:138efbce24d4c856ac287376df530d2c8bdf22d273735345368e2a1a4bad2833
size 2247106

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aec323b11cb171b7a4e0cdbddfe1068236f5c40ea4d944320f0e46260e4ecaf5
size 470238
oid sha256:f19284b4f0b1ab8f0295e085d5620d2119f2715aefc5ec3512c05cc47df1750c
size 470328

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:723eaf31d285c960d161a59485550f3b9b5ff0ac64302a94c8ada08ef11e7f77
size 1842603
oid sha256:b7f80156669468b2798aff8170a71f91e5e61eed21c0ec09a6dbf4368ee3244b
size 1843428

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6cec476f07f2556c3d7599e2ab2289288c830501455d83096020a567097e6825
size 500362
oid sha256:1745d6e4f2b03e15151cf9c99cdb5b68666c036445c3c43f3941ea71a75253c7
size 500278

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef3f4a078bf491af0b830d646fefa229e484f6ff3737cd2115668b211df7f309
size 2100752
oid sha256:f6888b6b56bdae66bc671aa88aca9b01fda0d331b1bbb3e004adebb2f9b92997
size 2100731

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5dc3b02676e553afab4e0f3156816143afd590aaf80118555e34758d48eb0df2
size 592142
oid sha256:9e7722f3f544837f3ca7b1dd7f81100fd9b670c91a18785266460abbf54f83ec
size 592078

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c6eacf78bcf0b8a2e22a6b12af349a26693909dd9965c860bce6c2571884ef00
size 3229243
oid sha256:7ecbf60ed2211c0a5ccd3586ec3dc7344fbb3232c907cbcdfc891338f25804f8
size 3228487

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a899cce6ea51fde813838bafce007fe4e8e2ff5c909c6794eff9d0881290d3ac
size 498105
oid sha256:9017eaa99e7209f708d663bb21210d39e5f9bd580d1a61f893aa055e7fe5559a
size 497949

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2ee531198a7052b93ef83f4d7ea4004980f2996039fbfb5ebe90d2d55421a145
size 2124879
oid sha256:6b3fa3a9ef1282417f6ef5270cc27ec55eab9002a81327b948f4ae16c754bd47
size 2124878

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e99d18c1812a0019c6d0a9cc2e5dbfa6d341c54238396f32dbaa558190998b4e
size 581801
oid sha256:42af39db59783e81c37ad550998d138a768e18b29e60e4b2afeb154dceafbaec
size 581715

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e377599cb29224d18352954681abd557869ac9d694074bd3d097e2fbeaf93fec
size 1015239
oid sha256:e063af1c4ee2e288ba8adbae609fb685e771e0f99ba540927a17807cc0e18796
size 1014727

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:85f209a72786a0d0f6cc7422f55470229c1fd28fba8e10cc527c2467ad6fcc62
size 511585

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:38f33d1e2213eb26179909c21bceda28d498d06e32a3c8457604bb185daacdb8
size 2304581

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0aeeefc1125ee12fa32a8af94a999a5a2dfad2851d9c815568ce10af2d954bdd
size 480217
oid sha256:d064caec65a168dc511fb49e6b0dc8ee8f20c896ec0b4e16d682d0ec1492ec39
size 480442

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a9a32c540860b51c55b6a0bf401dea81f9cf8544098668245b9553d8f960e75e
size 1887982
oid sha256:7e51feef053f26aadee377132689145f3046b662415e34136794a6b7e6cd63dc
size 1888210

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9c4803be8d5b7962ff839e5e59e2383b36cd4b6a1b659bdba4fe8ad0dafc0f6e
size 511152
oid sha256:12882ba8f4587a53b06252816c99b561131c13964a0bfb6aed9b5e07b2aa4df7
size 510943

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7ce2398b55571a0feeae61b0615e2d3bb48cee8594804049420055cf9e38abd1
size 2148643
oid sha256:34bbcc855dab5cb3ccdbc806ad374c27ebb4fb63b1007a758d171d2b66238988
size 2148745

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ea6f4ec55f447357f0189206f00f236832c2fb2836dc22f99cf3c07298931d97
size 605506
oid sha256:c0dd8c40e27ac29c52da559d664be37957aedb9209b27c3b89cd7a99b68186bd
size 605869

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d198853ff335437ed258f429e7e60a874a3a17e26a2b3cd3cbd00a702ce9d19d
size 3309536
oid sha256:b5f9b559ce37f23a79877eb525705f419d705817cdf68f26dca202239c80e5d8
size 3310406

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:269adfdd58c9bb915fcea93b6d6353d2c8ad8032e5aad49e065ca9d0eb5940a8
size 508891
oid sha256:2a569e4ea27decfdff4340948d3d21b6a3e854fc6b451226c010d0245e8e8071
size 508980

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b05ef49d322864547fb546665ae50f1491c47cfaa7ccd2ffb0cc8cdc566ee15a
size 2174294
oid sha256:577e24e7cbe7e6197ec3a1713a3b7ea18039393fd4e584563d9df5ffecc27ec8
size 2173626

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f3265140279e20635bc4c92138a130dd371b63bdeb6b69323e10b6282f3fefeb
size 594184
oid sha256:a9fcdfb8ccc2be2f046bb2dce83fd771c583094a9dbae1ca52a1819b6df78f02
size 594025

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1784770eff3b07b7f47c00231bc8e85e703203a7128870a6c300d354250e0627
size 1036599
oid sha256:6e7cf6376174807d193788e368e8ac8b6bb59573dbfccc98df401a9b98098d87
size 1036627

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4939e08b81bdec2cca978a42fcf6ace07c155410056279f7e321a4f17143b2a9
size 520536

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2a8f09da6eb4c1061f481300ff9e24fd4ecba8acc813fcf41d4889ef6cb70d52
size 2351645

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e4e67efaf2ec7f98b0fbc31e2dc7f72b65dadbc6b0650db1124a961e3515b9a4
size 490055
oid sha256:5adc36fa51c81cb822e31dc5990d09382b5ab12fb9c75603765f931b8ddb0e27
size 490117

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:68c105bc69efb8ea8c59f25436beafacfb728254374588e6817970f865dce011
size 1921026
oid sha256:53f2a15eff3b2814f4fe8db1dbb104b4486d7190357deb85dd697d42af896090
size 1921658

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a7279cf1f4114361c2bd97db33a205abd5f4986fb59972a077c60e5a754f8111
size 520256
oid sha256:d798c2566c8c611faed73ef3a13f0c86e13e2872e494d2af86369a29859d1e4a
size 520420

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:35fab5ce30b0b7242f97646c81dc846fa3914e0e52a9a7ed5156cf4c8e4a7823
size 2187139
oid sha256:42479cf43a8f262a5794695ecf1e07491d5e6a5261a7692729616dbb5080ef03
size 2186737

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b355bdb236a67ee0aaafc3bb8b2edc8d9502ab164dcea4f786cecb677f90a063
size 616973
oid sha256:f9e30b36eb25a359a63e56e04a50b3e79d6bdad633109c7462a95679c99bb65b
size 616875

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:588029b34174373e20ddc2d151b5eb4bb12e416fc59fb43b2a00b65a0a74735f
size 3376851
oid sha256:2030ad37f96203bec8182a8bdb620f07776c498de8dec6f341da24d162e67d79
size 3378181

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f54e0d387508ccc2908f23c0026c1e48acb74638001c598cccbfbbc138f5dd06
size 518865
oid sha256:f6407a548e63cfe2eb5bc8197b93245dfd5dbc286d5700c8bd870c0bfad327e3
size 518671

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:49d7c34e3de3407343148c79ab579891008f5514a0e3d56b35ba88b40e8bbdb5
size 2213083
oid sha256:17a75f157e1acc2b19fef8a3796255998de3533757fc853195b2e2f2763376be
size 2213639

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7faf40bc465e34a71fc2ca3f83b76cb894eb3e7484ec52be84406cbd5218f886
size 819818
oid sha256:7528c4d84a1127f4a6c3fd4f6c9053d62cbcb8ed152447ba60b2ad31f9730539
size 819460

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:636af056d5b9bd2ed3b6ee94b20dd639fb77561728a726f37ed7c5d74e69c238
size 1329851
oid sha256:4462f5a96e7a01ce48e827ab1ea2eab3f0deb0cf09ddfd1f20fd643106c87890
size 1329852

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0d8b384f2042dd85b0646ad3b02b4e398d9bdf4831daf468bc19ecf1147f886c
size 701607

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f66bc908316a6b33d71c5cdad9bc75cfa913dfdada91062fce6fe340a68fcea0
size 3191576

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:47c2bd22cd0a5e9e8e6e9b074ce6869c9cddf93a23a4969b098c7cf6f6e69013
size 654120
oid sha256:d39a308378df851e8c3f004582cb150395c400d105ca46f63f350ec2e619fcff
size 654361

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ee22995574ce74eabf84faf63f3d5e1916a4d82183b503978cf69efb073eabc8
size 2451056
oid sha256:ce5f71e526ab22ff0873ea1d0af421f69f714a92bfbede72c13f3530a60a02f6
size 2451215

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5d724bef603c0e29c2a97a758c5a5ea90e1d34d75a21f1053accd06e81a5c15f
size 711666
oid sha256:bc4779e18a81595e4e31fbf4f8d15438bc26ae040779946a91aabd192cc6d38a
size 711495

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:20a73f5820f7da0938b816f5a2bac922ba37415fc9db23176ca8083109124807
size 2906353
oid sha256:c68be5de711a077d729ddd1a3cabefb65073ce80ecc1dc26b64d57c948b5db09
size 2906922

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3ace21946a6025336c6c20e762949483551dce938e9afc4de038fbb1bbbaac9b
size 842196
oid sha256:1afe7cc0e3c535b1492cf1a7aa4dc59cebdea3bf2881b70ea2d0858b8cb88a1d
size 842251

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9462d5222228e48c8c3cac3b6cc96715e5d653b449716c40b79a6c13300cd323
size 4494740
oid sha256:9ed80a55b054d962820573ced89c56431cd520fa7b98d584adeedaae39814e20
size 4496072

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:854ceb080b3702ac0a019288cc54889eeb87eb21f67e07d7f9aa41634e133c01
size 712020
oid sha256:e9726598fdecc7dd5f0293cb90916de31564cd96302f47be207e486b209e4935
size 712067

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dbafb0e78916bc9666925c3eca3ef52ee689039cecba0c3be62e40fd53830905
size 2949254
oid sha256:ca9306742bcee4ac9a1439bca24fa1fa134390201c39c53e2d7e1d22bbeb407a
size 2948665

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7cabb7eb14da453c9fd7bd16dc9bc98c887dbfd7269e0a9f5400b58d618419ed
size 455985
oid sha256:cbdedda91212b4c70fb5265456fc134b82f364d01e4f729449856bce2ee8440c
size 455914

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:245cbe0d9b277eb2e41ec63695a491ca53b7743f3b3f8323153c804ead4565d2
size 766834
oid sha256:4ef64d73bfba12d035ebbe984164813f67a35c72e7d983efcba5ec3ee8e7ced5
size 766406

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:24da70d24e87e5afcccc1d31c78b396af7fc3c224120b83807d66454e487ee27
size 403774

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:571d75239963a4273ab3fa498dad1401b2dfe645fffd51766f737841c38fc683
size 1759166

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:453e9a3098d2f8ba909c8b2411dcc721dd8d3b8ec304df89c9dd2abf012d6b6c
size 378469
oid sha256:b6c26413dc27e0a764792ef7bfe911dc1563551b0b1c467059884984f7ce3317
size 378466

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f6e417f52efbeedfe37d3e70d70672678db0c91cc94f07393fbbee0fd32e3ec4
size 1417734
oid sha256:a125cc59d957c82db14fedfd626b7d7d4cdf92a7d89ff01dc17c37466f3d31a7
size 1417587

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e825ae385536a4bb8639a12a0eac193d977bc3094fd113af62baf2a120f06280
size 402649
oid sha256:9326cf49e59b1da330c769bbeba4a1256d131e084334cf73afab62749a259a8b
size 402836

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3f57737d56a1c749e4175e2fbaf899fe86b57f6a920adf40fd031120a5e4cd83
size 1636364
oid sha256:c1ffee1577a932a73ca24017fadabbb02331d732a6adb8f2205055a56174e1a7
size 1636681

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f382cb2a3f04c1b7a183f3bd2fae81be019faf7a11f9002838f0e4ba9f26f5c0
size 475144
oid sha256:94025046454a13154732f26f98a5dfc2a129df755179f283e230d092a335a775
size 475470

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:793350bfb6b378caa1319c4a5828e41c18f8641b98c9c87083fda43ff187aeff
size 2500322
oid sha256:0441c8fa6876c29c976d7844a42ee1b81c7742ebf3f29384f64c7bb1a0b18e0f
size 2500419

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:34bdb29703150169b24c189d3e9be85a14d1f4e97c5af3696a4a4096317f54e7
size 401304
oid sha256:dd4951e9a89b0d6f85eed5d3a9b803d9cdc9128696ae199f681a311f2bf31088
size 401384

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:29e25a138cde445d64a8ff66f1562fbf125e377e082d5ee053dd5c3cb92384e3
size 1656070
oid sha256:59152f18228624fdf2da09f293c462818755d2bf7d841deba3011b3e01968421
size 1655241

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b51a8e741ad529145f45d1705d61a61b99b7a9c1ccb3254ae6c41c8478d5ce45
size 699935
oid sha256:202910a6dbbf63864e4b0a49d433501c7c11b2011526e9391a13f5a4bdd8ccfd
size 700063

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:df535e8534b78002a306451580d237fa2b51a4cfa1807299ad864f424c40922f
size 1244948
oid sha256:11b7b2c5d5e62c3b01ff4de8948270a6f3bcdfbab93cc28719bbc5bafe560438
size 1245061

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eca587517276357126a0494ed4a9782a4b3d5321811f8939261b2f8f9af05002
size 591221
oid sha256:00e9a49fac07b29b8ee5e1696578a014fd7ff932ab042450dbe55465e235ab55
size 591593

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:30c74389e3cafcea21c1f500d1865ecfdcb34bb8654e8c44528c7f839f8d1b86
size 2329477
oid sha256:ab9cfcf576735798a8fc33bee0c1b5439357b8b4235d26ac4841cf3687948dab
size 2331318

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0bbe0af524c0cd33ef90a8b6fe812de60d8543c7bdc06f723b448fefc6141f4c
size 629713
oid sha256:7e8f557d1db0eec5f464ec08bb80d18c6ecdbf860cced9dd081357a726feac50
size 629325

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b754343a43cdd5a0080ab60d2d42ebb960a8b837ea269c0f994f84726d77fb84
size 2641609
oid sha256:c404a77596b695e906ff57b34f532eb54e5077c8500489f5236e2b07f8c2e390
size 2641965

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7d78f49efa986f178be0a8f634d7f37413b9669b5f33bc47d7b2fff3096d398d
size 726812
oid sha256:6925f3404cc946cf731de7d7b1b6a946182c940c584116b86224435e5b9ddc5b
size 726892

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2c4e7a1ba39f23911d7810eb0a4652182b5c8e8b3dd231805468610cd6013c37
size 3992533
oid sha256:e2f5d1079073d7733ba421af1b49ef605e222f041c43a270fe492e2a31bee77f
size 3993526

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9cc80efb6a669dc8cdf99bf43c7e132e5506d71cb671a6594bc0f610798de309
size 627963
oid sha256:0f92faf660b227f2973883e50bd1a282fca84561ccea9419a79fc2aa8482e3df
size 627883

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b446ab7e1638b6d984a2d97372e15e9664ce426075867e9b8da4d5f3bd2ff9be
size 2670098
oid sha256:8c3366a31a0f0b2eac1f3d1bbee2804c8b969894709983527d658236d703f921
size 2670005

View File

@@ -6,7 +6,6 @@ import tinyseg from 'lunr-languages/tinyseg.js'
import lunrJa from 'lunr-languages/lunr.ja.js'
import lunrEs from 'lunr-languages/lunr.es.js'
import lunrPt from 'lunr-languages/lunr.pt.js'
import lunrDe from 'lunr-languages/lunr.de.js'
import { get } from 'lodash-es'
import readFileAsync from '../readfile-async.js'
import { namePrefix } from './config.js'
@@ -17,7 +16,6 @@ tinyseg(lunr)
lunrJa(lunr)
lunrEs(lunr)
lunrPt(lunr)
lunrDe(lunr)
const LUNR_DIR = './indexes'
const lunrIndexes = new Map()

View File

@@ -1,4 +1,5 @@
import { v4 as uuidv4 } from 'uuid'
import { hydroNames } from '../lib/schema-event.js'
export default function recordRedirects(req, res, next) {
if (!req.hydro.maySend()) return next()
@@ -6,7 +7,7 @@ export default function recordRedirects(req, res, next) {
res.on('finish', async function recordRedirect() {
// We definitely don't want 304
if (![301, 302, 303, 307, 308].includes(res.statusCode)) return
const schemaName = req.hydro.schemas.redirect
const schemaName = hydroNames.redirect
const redirectEvent = {
context: {
user: req.cookies['_docs-events'] || uuidv4(),

View File

@@ -7,7 +7,6 @@ import tinyseg from 'lunr-languages/tinyseg.js'
import lunrJa from 'lunr-languages/lunr.ja.js'
import lunrEs from 'lunr-languages/lunr.es.js'
import lunrPt from 'lunr-languages/lunr.pt.js'
import lunrDe from 'lunr-languages/lunr.de.js'
import fs from 'fs/promises'
import rank from './rank.js'
import validateRecords from './validate-records.js'
@@ -19,7 +18,6 @@ tinyseg(lunr)
lunrJa(lunr)
lunrEs(lunr)
lunrPt(lunr)
lunrDe(lunr)
export default class LunrIndex {
constructor(name, records) {
@@ -46,7 +44,7 @@ export default class LunrIndex {
this.index = lunr(function constructIndex() {
// No arrow here!
if (['ja', 'es', 'pt', 'de'].includes(language)) {
if (['ja', 'es', 'pt'].includes(language)) {
this.use(lunr[language])
}

View File

@@ -22,7 +22,7 @@ describe('learning tracks', () => {
const $ = await getDOM('/en/code-security/guides')
expect($('[data-testid=learning-track]').length).toBeGreaterThanOrEqual(4)
$('[data-testid=learning-track]').each((i, trackElem) => {
const href = $(trackElem).find('.Box-header a').first().attr('href')
const href = $(trackElem).find('.Box-header a:nth-child(2)').first().attr('href')
const found = href.match(/.*\?learn=(.*)/i)
expect(found).not.toBeNull()
const trackName = found[1]

View File

@@ -1,44 +0,0 @@
---
title: Your account and profile on GitHub
shortTitle: Account and profile
intro: 'Make {% data variables.product.product_name %} work best for you by adjusting the settings for your user account, personalizing your profile page, and managing the notifications you receive for activity on {% data variables.product.prodname_dotcom %}.'
introLinks:
quickstart: /get-started/onboarding/getting-started-with-your-github-account
featuredLinks:
guides:
- /account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/changing-your-github-username
- '{% ifversion ghae %}/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/about-your-personal-dashboard{% endif %}'
- /account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/managing-your-profile-readme
- '{% ifversion ghae %}/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile{% endif %}'
- /account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/about-notifications
popular:
- /account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-your-theme-settings
- /account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/setting-your-commit-email-address
- /account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository
- /account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/configuring-notifications
guideCards:
- /account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/why-are-my-contributions-not-showing-up-on-my-profile
- /account-and-profile/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications/managing-notifications-from-your-inbox
- /account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/blocking-command-line-pushes-that-expose-your-personal-email-address
- '{% ifversion ghes or ghae %}/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-the-default-branch-name-for-your-repositories{% endif %}'
changelog:
label: 'profiles, github-themes, notifications'
versions:
fpt: '*'
ghec: '*'
layout: product-landing
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Accounts
- Profiles
- Notifications
children:
- /setting-up-and-managing-your-github-user-account
- /setting-up-and-managing-your-github-profile
- /managing-subscriptions-and-notifications-on-github
---

View File

@@ -1,22 +0,0 @@
---
title: Abonnements und Benachrichtigungen auf GitHub verwalten
intro: 'You can specify how to receive notifications, the repositories you are interested in, and the types of activity you want to hear about.'
redirect_from:
- /categories/76/articles/
- /categories/notifications/
- /categories/receiving-notifications-about-activity-on-github
- /github/managing-subscriptions-and-notifications-on-github
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
children:
- /setting-up-notifications
- /viewing-and-triaging-notifications
- /managing-subscriptions-for-activity-on-github
shortTitle: Subscriptions & notifications
---

View File

@@ -1,18 +0,0 @@
---
title: Verwaltung von Abonnements für Aktivitäten auf GitHub
intro: 'Um nachhaltige Workflows für Benachrichtigungen zu unterhalten, verstehe und überprüfe regelmäßig Deine Abonnements.'
redirect_from:
- /github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
children:
- /viewing-your-subscriptions
- /managing-your-subscriptions
shortTitle: Manage subscriptions
---

View File

@@ -1,73 +0,0 @@
---
title: Verwaltung Deiner Abonnements
intro: 'Um Dir zu helfen, Deine Benachrichtigungen effizient zu verwalten, gibt es mehrere Möglichkeiten, Dich abzumelden.'
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
redirect_from:
- /github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions
- /github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github/managing-your-subscriptions
shortTitle: Manage your subscriptions
---
Um Dir zu helfen, Deine Abonnements zu verstehen und zu entscheiden, ob du Dich abmelden sollst, findest Du weitere Informationen auf „[Deine Abonnements ansehen](/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions)."
{% note %}
**Hinweis:** Anstatt Dich abzumelden, hast Du die Möglichkeit, ein Repository zu ignorieren. Wenn Du ein Repository ignorierst, erhältst du keine Benachrichtigungen. Es wird nicht empfohlen, Repositorys zu ignorieren, da Du in diesem Fall auch keine Benachrichtigung erhältst, wenn Du @erwähnt wirst. {% ifversion fpt or ghec %}If you're experiencing abuse and want to ignore a repository, please contact {% data variables.contact.contact_support %} so we can help. {% data reusables.policies.abuse %}{% endif %}
{% endnote %}
## Wähle die Art der Abmeldung
Um die Beobachtung von Repositorys schnell zu beenden oder Dich abzumelden, gehe auf die Seite „Watched repositories" (Beobachtete Repositorys), auf der Du alle von Dir beobachteten Repositorys siehst. Weitere Informationen findest Du unter „[Ein Repository nicht mehr beobachten](#unwatch-a-repository)."
Um mehrere Benachrichtigungen gleichzeitig abzumelden, kannst Du Dich über Deinen Posteingang oder über die Abonnementseite abmelden. Beide Optionen bieten mehr Kontext über Deine Abonnements als die Seite „Watched repositories" (beobachtete Repositorys).
### Vorteile der Abmeldung über Deinen Posteingang
Wenn du Benachrichtigungen in Deinem Posteingang abmeldest, hast Du mehrere weitere Selektionsoptionen und kannst Deine Benachrichtigungen nach benutzerdefinierten Filtern und Diskussionstypen auswählen. Weitere Informationen findest du unter „[Benachrichtigungen über Deinen Posteingang verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox)."
### Vorteile der Abmeldung von der Abonnementseite
Wenn Du Benachrichtigungen auf der Abonnementseite abmeldest, kannst Du mehr Details der von Dir abonnierten Benachrichtigungen sehen und sie nach „Most recently subscribed" (neueste Abonnements) oder „Least recently subscribed" (älteste Abonnements) sortieren.
Die Abonnements-Seite zeigt Dir alle Benachrichtigungen, die Du gerade abonniert hast, einschließlich Benachrichtigungen, die Du in Deinem Posteingang als **Done** (Erledigt) markiert hast.
Du kannst Deine Abonnements nur nach Repository und dem Grund filtern, warum Du die Benachrichtigung erhältst.
## Abmelden von Benachrichtigungen in Deinem Posteingang
Wenn Du Benachrichtigungen in Deinem Posteingang abmeldest, werden diese automatisch aus Deinem Posteingang verschwinden.
{% data reusables.notifications.access_notifications %}
1. Wähle im Posteingang für Benachrichtigungen diejenige Benachrichtigungen aus, die Du abmelden möchtest.
2. Click **Unsubscribe.** ![Unsubscribe option from main inbox](/assets/images/help/notifications-v2/unsubscribe-from-main-inbox.png)
## Abmeldung von Benachrichtigungen auf der Abonnementseite
{% data reusables.notifications.access_notifications %}
1. Verwende in der linken Seitenleiste, unterhalb der Liste der Repositorys, das Dropdownmenü „Manage Notifications" (Benachrichtigungen verwalten) und klicke auf **Subscriptions** (Abonnements). ![Dropdownmenü-Optionen „Manage Notifications" (Benachrichtigungen verwalten)](/assets/images/help/notifications-v2/manage-notifications-options.png)
2. Wähle die Benachrichtigungen, die Du abmelden möchtest. Klicke oben rechts auf **Unsubscribe** (Abmelden). ![Abonnementseite](/assets/images/help/notifications-v2/unsubscribe-from-subscriptions-page.png)
## Ein Repository nicht mehr beobachten
Wenn Du ein Repository nicht mehr beobachtest, meldest Du Dich von zukünftigen Aktualisierungen dieses Repositorys ab, außer wenn du an einer Unterhaltung teilnimmst oder @erwähnt wirst.
{% data reusables.notifications.access_notifications %}
1. Verwende in der linken Seitenleiste, unterhalb der Liste der Repositorys, das Dropdownmenü „Manage Notifications" (Benachrichtigungen verwalten) und klicke auf **Watched repositories** (beobachtete Repositorys). ![Dropdownmenü-Optionen „Manage Notifications" (Benachrichtigungen verwalten)](/assets/images/help/notifications-v2/manage-notifications-options.png)
2. Nimm auf der Seite der beobachteten Repositorys eine Bewertung dieser Repositorys vor und wähle dann aus:
{% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
- Ein Repository nicht mehr beobachten
- Ignore all notifications for a repository
- Customize the types of event you receive notifications for ({% data reusables.notifications-v2.custom-notification-types %}, if enabled)
{% else %}
- Ein Repository nicht mehr beobachten
- Only watch releases for a repository
- Ignore all notifications for a repository
{% endif %}

View File

@@ -1,86 +0,0 @@
---
title: Deine Abonnements anzeigen
intro: 'Um zu verstehen, woher und wie viele Benachrichtigungen Du erhältst, empfehlen wir Dir, Deine Abonnements und Deine beobachteten Repositorys regelmäßig zu überprüfen.'
redirect_from:
- /articles/subscribing-to-conversations/
- /articles/unsubscribing-from-conversations/
- /articles/subscribing-to-and-unsubscribing-from-notifications
- /articles/listing-the-issues-and-pull-requests-youre-subscribed-to
- /articles/watching-repositories/
- /articles/unwatching-repositories/
- /articles/watching-and-unwatching-repositories
- /articles/watching-and-unwatching-releases-for-a-repository
- /articles/watching-and-unwatching-team-discussions
- /articles/listing-watched-repositories/
- /articles/listing-the-repositories-you-re-watching
- /articles/listing-the-repositories-youre-watching
- /github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions
- /github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github/viewing-your-subscriptions
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
shortTitle: View subscriptions
---
Du erhältst Benachrichtigungen zu Deinen Abonnements über laufende Aktivitäten auf {% data variables.product.product_name %}. Es gibt mehrere Gründe, warum Du eine Unterhaltung abonniert haben kannst. Weitere Informationen findest Du unter „[Über Benachrichtigungen](/github/managing-subscriptions-and-notifications-on-github/about-notifications#notifications-and-subscriptions)."
Wir empfehlen Dir, Deine Abonnements als Teil eines effizienten Workflows für Benachrichtigungen zu überprüfen und allenfalls abzubestellen. Weitere Informationen über Deine Abmeldeoptionen findest Du unter „[Abonnements verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions)."
## Feststellen, warum Du zu viele Benachrichtigungen erhältst
Wenn Dein Posteingang zu viele Benachrichtigungen zum Verwalten hat, überlege Dir, ob du zu viele Abonnements hast oder wie Du Deine Benachrichtigungseinstellungen ändern kannst, um Deine Abonnements zu reduzieren und die Art von Benachrichtigungen, die Du erhältst. Beispielsweise kannst Du erwägen, die Einstellungen zum automatischen Beobachten aller Repositorys und Teamdiskussionen zu deaktivieren, wenn Du einem Team oder Repository beitrittst.
![Automatisches Beobachten](/assets/images/help/notifications-v2/automatic-watching-example.png)
Weitere Informationen findest Du unter „[Benachrichtigungen konfigurieren](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#automatic-watching)."
Eine Übersicht Deiner Repository-Abonnements findest Du unter „[Repositorys überprüfen, die Du beobachtest](#reviewing-repositories-that-youre-watching).
{% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
{% tip %}
**Tip:** You can select the types of event to be notified of by using the **Custom** option of the **Watch/Unwatch** dropdown list in your [watching page](https://github.com/watching) or on any repository page on {% data variables.product.product_name %}. Weitere Informationen findest Du unter „[Benachrichtigungen konfigurieren](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository)."
{% endtip %}
{% endif %}
Viele Personen vergessen Repositorys, die sie in der Vergangenheit beobachtet haben. Über die Seite „Watched repositories" (beobachtete Repositorys) kannst Du die Beobachtung von Repositorys schnell deaktivieren. For more information on ways to unsubscribe, see "[Unwatch recommendations](https://github.blog/changelog/2020-11-10-unwatch-recommendations/)" on {% data variables.product.prodname_blog %} and "[Managing your subscriptions](/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions)." You can also create a triage workflow to help with the notifications you receive. For guidance on triage workflows, see "[Customizing a workflow for triaging your notifications](/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications)."
## Alle Deine Abonnements überprüfen
{% data reusables.notifications.access_notifications %}
1. Verwende in der linken Seitenleiste, unterhalb der Liste der Repositorys, von denen Du Benachrichtigungen erhältst, das Dropdownmenü „Manage notifications" (Benachrichtigungen verwalten) und klicke auf **Subscriptions** (Abonnements). ![Dropdownmenü-Optionen „Manage Notifications" (Benachrichtigungen verwalten)](/assets/images/help/notifications-v2/manage-notifications-options.png)
2. Verwende Filter und Sortierung, um die Liste der Abonnements einzuschränken, und beginne Dich von Unterhaltungen abzumelden, von denen Du keine Benachrichtigungen mehr erhalten willst.
![Abonnementseite](/assets/images/help/notifications-v2/all-subscriptions.png)
{% tip %}
**Tipps:**
- Um Abonnements zu überprüfen, die du vergessen hast, sortiere nach „least recently subscribed" (älteste Abonnements).
- Um eine Liste von Repositories zu überprüfen, für die Du noch Benachrichtigungen erhalten kannst, erstelle die Repository-Liste im Dropdownmenü „filter by repository" (nach Repository filtern).
{% endtip %}
## Repositorys überprüfen, die Du beobachtest
1. Verwende in der linken Seitenleiste, unterhalb der Liste der Repositorys, das Dropdownmenü „Manage Notifications" (Benachrichtigungen verwalten) und klicke auf **Watched repositories** (beobachtete Repositorys). ![Dropdownmenü-Optionen „Manage Notifications" (Benachrichtigungen verwalten)](/assets/images/help/notifications-v2/manage-notifications-options.png)
2. Evaluiere die von Dir beobachteten Repositorys und entscheide, ob deren Aktualisierungen für Dich immer noch relevant und hilfreich sind. Wenn Du ein Repository beobachtest, wirst Du über alle Unterhaltungen für dieses Repository benachrichtigt.
{% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
![Seite der beobachteten Benachrichtigungen](/assets/images/help/notifications-v2/watched-notifications-custom.png)
{% else %}
![Seite der beobachteten Benachrichtigungen](/assets/images/help/notifications-v2/watched-notifications.png)
{% endif %}
{% tip %}
**Tip:** Instead of watching a repository, consider only receiving notifications {% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}when there are updates to {% data reusables.notifications-v2.custom-notification-types %} (if enabled for the repository), or any combination of these options,{% else %}for releases in a repository,{% endif %} or completely unwatching a repository.
Wenn Du ein Repository nicht mehr beobachtest, kannst du immer noch benachrichtigt werden, wenn Du @erwähnt wirst oder in einem Thread teilnimmst. When you configure to receive notifications for certain event types, you're only notified when there are updates to these event types in the repository, you're participating in a thread, or you or a team you're on is @mentioned.
{% endtip %}

View File

@@ -1,104 +0,0 @@
---
title: Informationen zu Benachrichtigungen
intro: 'Benachrichtigungen bieten Aktualisierungen über die Aktivitäten auf {% data variables.product.product_location %} , die Du abonniert hast. Du kannst den Posteingang für Benachrichtigungen verwenden, um deine Updates anzupassen, zu selektieren und zu verwalten.'
redirect_from:
- /articles/notifications/
- /articles/about-notifications
- /github/managing-subscriptions-and-notifications-on-github/about-notifications-beta
- /github/managing-subscriptions-and-notifications-on-github/about-notifications
- /github/managing-subscriptions-and-notifications-on-github/setting-up-notifications/about-notifications
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
---
{% ifversion ghes %}
{% data reusables.mobile.ghes-release-phase %}
{% endif %}
## Benachrichtigungen und Abonnements
Über ein Abonnement kannst Du festlegen, dass Du Aktualisierungen zu bestimmten Aktivitäten auf {% data variables.product.product_location %} erhalten willst. Benachrichtigungen sind Aktualisierungen, die Du für bestimmte Aktivitäten erhältst, die Du abonniert hast.
### Abonnement-Optionen
Du kannst Benachrichtigungen abonnieren für:
- Eine Unterhaltung in einem spezifischen Issue, Pull Request oder Gist.
- Alle Aktivitäten in einem Repository oder in einer Team-Diskussion.
- CI-Aktivität wie beispielsweise der Status von Workflows in Repositorys, die mit {% data variables.product.prodname_actions %} aufgesetzt wurden. {% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
- Repository {% data reusables.notifications-v2.custom-notification-types %} (if enabled).{% else %}
- Releases in a repository.{% endif %}
Du kannst auch automatisch alle Repositorys überwachen, auf die Du Push-Zugriff hast, mit Ausnahme von Forks. Du kannst jedes andere Repository, auf das Du Zugriff hast, manuell verfolgen durch klicken auf **Watch** (Beobachten).
Wenn Du kein Interesse mehr an einer Unterhaltung hast, kannst Du das Abonnement abmelden oder die Art der Benachrichtigungen anpassen, die Du in der Zukunft erhalten willst. Wenn Du beispielsweise keine Benachrichtigungen mehr von einem bestimmten Repository erhalten möchtest, kannst Du **Unsubscribe** (Abmelden) klicken. Weitere Informationen findest Du unter „[Deine Abonnements verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions)."
### Standardabonnements
Im Allgemeinen wirst Du automatisch Unterhaltungen abonniert erhalten, wenn folgendes gilt:
- Du hast automatische Beobachtungen auf Repositories oder Teams, denen Du beigetreten bist, in Deinen Benachrichtigungseinstellungen nicht deaktiviert. Diese Einstellung ist standardmäßig aktiviert.
- Du bist einem Issue oder Pull Request zugewiesen worden.
- Du hast einen Pull Request oder einen Issue eröffnet oder Du hast einen Beitrag in einer Teamdiskussion erstellt.
- Du hast einen Thread kommentiert.
- Du hast manuell einen Thread abonniert, indem Du auf **Watch** (Beobachten) or **Subscribe** (Abonnieren) geklickt hast.
- Du wurdest mit Deinem Benutzernahmen @erwähnt.
- Du hast den Status eine Thread geändert, zum Beispiel durch Schließen eines Issues oder Zusammenführen eines Pull Request.
- Ein Team, dem Du angehörst, wurde @erwähnt.
Standardmäßig überwachst Du auch automatisch alle Repositorys, die Du erstellst und die im Besitz Deines Benutzerkonto sind.
Um für Unterhaltungen, die Du automatisch abonniert hast, keine Benachrichtigungen mehr zu erhalten, kannst Du Deine Benachrichtigungseinstellungen ändern oder die Abonnements und Beobachtungen für Aktivitäten auf {% data variables.product.product_location %} direkt abmelden. Weitere Informationen findest Du unter „[Deine Abonnements verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions)."
## Benachrichtigungen und Abonnements anpassen
You can choose to view your notifications through the notifications inbox at [https://github.com/notifications](https://github.com/notifications){% ifversion fpt or ghes or ghec %} and in the {% data variables.product.prodname_mobile %} app{% endif %}, through your email, or some combination of these options.
Konfiguriere Deine Benachrichtigungseinstellungen, um die Art von Aktualisierungen anzupassen, die Du erhalten möchtest, und wohin sie gesendet werden sollen. Weitere Informationen findest Du unter „[Benachrichtigungen konfigurieren](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications)."
Um Deine Abonnements übersichtlich zu halten, überprüfe Deine Abonnements und Deine verfolgten Repositorys regelmäßig und melde sie bei Bedarf ab. Weitere Informationen findest Du unter „[Abonnements für Aktivitäten auf GitHub verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github)."
Um anzupassen, wie Du Aktualisierungen für bestimmte Pull Requests oder Issues erhalten möchtest, kannst Du Deine Einstellungen innerhalb des Issues oder Pull Requests konfigurieren. Weitere Informationen findest Du unter „[Eine einzelne Benachrichtigung auswählen](/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification#customizing-when-to-receive-future-updates-for-an-issue-or-pull-request)."
{% ifversion fpt or ghes or ghec %}
You can customize and schedule push notifications in the {% data variables.product.prodname_mobile %} app. Weitere Informationen findest Du unter „[Benachrichtigungen konfigurieren](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#managing-your-notification-settings-with-github-for-mobile)."
{% endif %}
## Gründe für den Erhalt von Benachrichtigungen
Dein Posteingang ist mit Standardfiltern konfiguriert, die die häufigsten Gründe dafür darstellen, warum Personen ihre Benachrichtigungen nachverfolgen müssen. Weitere Informationen über Posteingang-Filter findest Du unter „[Benachrichtigungen über Deinen Posteingang verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox#default-notification-filters)."
Dein Posteingang zeigt eine Kennzeichnung für die `Gründe`, weshalb Du eine Benachrichtigungen erhältst.
![Begründungskennzeichnungen im Posteingang](/assets/images/help/notifications-v2/reasons-as-labels-in-inbox.png)
Du kannst Deinen Posteingang nach dem Grund filtern, warum Du Benachrichtigungen abonniert hast. Um beispielsweise nur Pull Requests zu sehen, für die jemand Deinen Review angefordert hast, kannst Du `review-requested` als Abfragefilter verwenden.
![Filtere Benachrichtigungen nach "Review Requested" (Review angefordert)](/assets/images/help/notifications-v2/review-requested-reason.png)
Wenn du Benachrichtigungen so konfiguriert hast, dass sie per E-Mail gesendet werden und Du glaubst, dass Du Benachrichtigungen erhältst, die nicht zu Dir gehören, versuche die Fehlerbehebung über E-Mail-Kopfzeilen, die den beabsichtigten Empfänger anzeigen. Weitere Informationen findest Du unter „[Benachrichtigungen konfigurieren](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#filtering-email-notifications)."
## Benachrichtigungen in Deinem Posteingang selektieren
Um Deine Benachrichtigungen effektiv zu verwalten, kannst Du sie in Deinem Posteingang mit folgenden Optionen selektieren:
- Entferne eine Benachrichtigung aus dem Posteingang mit **Done** (Erledigt). Du kannst Benachrichtigungen mit Kennzeichnung **Done** (Erledigt) alle an einem Ort überprüfen, indem Du in der Seitenleiste auf **Done** (Erledigt) klickst oder indem Du die Abfrage `is:done` benutzt.
- Markiere eine Benachrichtigung als gelesen oder ungelesen.
- **Save** (Sichere) eine Benachrichtigung für eine spätere Überprüfung. **Saved** (Gesicherte) Benachrichtigungen sind in Deinem Posteingang markiert. Du kannst Benachrichtigungen mit Kennzeichnung **Saved** (Gesichert) alle an einem Ort überprüfen, indem Du in der Seitenleiste auf **Saved** (Gesichert) klickst oder indem Du die Abfrage `is:saved` benutzt.
- Melde eine Benachrichtigung automatisch ab und auch künftige Aktualisierungen dieser Unterhaltung. Das Abmelden entfernt die Benachrichtigung auch aus Deinem Posteingang. Wenn Du Dich aus einer Unterhaltung abmeldest und später jemandem Deinen Benutzernamen oder ein Team erwähnt, von dem Du Aktualisierungen erhältst, dann wirst Du wieder Benachrichtigungen von dieser Unterhaltung erhalten.
Aus Deinem Posteingang heraus kannst Du auch mehrere Benachrichtigungen auf einmal selektieren. Weitere Informationen findest Du unter „[Benachrichtigungen über Deinen Posteingang verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox#triaging-multiple-notifications-at-the-same-time)."
## Deinen Posteingang für Benachrichtigungen anpassen
To focus on a group of notifications in your inbox on {% data variables.product.product_location %}{% ifversion fpt or ghes or ghec %} or {% data variables.product.prodname_mobile %}{% endif %}, you can create custom filters. Zum Beispiel kannst Du einen benutzerdefinierten Filter für ein Open-Source-Projekt erstellen, zu dem Du beiträgst, und nur Benachrichtigungen für das Repository sehen, in dem Du erwähnt bist. Weitere Informationen findest du unter „[Benachrichtigungen über Deinen Posteingang verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox)." Weitere Beispiele für die Anpassung Deines Selektions-Workflows findest Du unter „[Einen Workflow für das Selektieren Deiner Benachrichtigungen anpassen](/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications)."
## Richtlinie zur Aufbewahrung von Benachrichtigungen
Benachrichtigungen, die nicht als **Saved** (Gesichert) markiert sind, werden für 5 Monate aufbewahrt. Benachrichtigungen, die als **Saved** (Gesichert) markiert sind, werden unbegrenzt aufbewahrt. Wenn Deine gesicherte Benachrichtigung älter als 5 Monate ist und Du die „gesichert" Markierung entfernst, wird die Benachrichtigung innerhalb eines Tages aus Deinem Posteingang entfernt.
## Feedback und Support
Wenn Du Feedback oder Funktionsanfragen für Benachrichtigungen hast, benutze das [Feedback Formular für Benachrichtigungen](https://support.github.com/contact/feedback?contact%5Bcategory%5D=notifications&contact%5Bsubject%5D=Product+feedback).

View File

@@ -1,256 +0,0 @@
---
title: Benachrichtigungen konfigurieren
intro: 'Wähle die Art der Aktivitäten auf {% data variables.product.prodname_dotcom %} , für die Du Benachrichtigungen erhalten möchtest und wie Du diese Aktualisierungen erhalten möchtest.'
redirect_from:
- /articles/about-web-notifications
- /format-of-notification-emails/
- /articles/configuring-notification-emails/
- /articles/about-notification-emails/
- /articles/about-email-notifications
- /articles/accessing-your-notifications
- /articles/configuring-notification-delivery-methods/
- /articles/managing-notification-delivery-methods/
- /articles/managing-notification-emails-for-organizations/
- /articles/choosing-the-delivery-method-for-your-notifications
- /articles/choosing-the-types-of-notifications-you-receive/
- /github/managing-subscriptions-and-notifications-on-github/configuring-notifications
- /github/managing-subscriptions-and-notifications-on-github/setting-up-notifications/configuring-notifications
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
---
{% ifversion ghes %}
{% data reusables.mobile.ghes-release-phase %}
{% endif %}
## Zustellungsoptionen für Benachrichtigungen
You can receive notifications for activity on {% data variables.product.product_location %} in the following locations.
- The notifications inbox in the {% data variables.product.product_location %} web interface{% ifversion fpt or ghes or ghec %}
- The notifications inbox on {% data variables.product.prodname_mobile %}, which syncs with the inbox on {% data variables.product.product_location %}{% endif %}
- An email client that uses a verified email address, which can also sync with the notifications inbox on {% data variables.product.product_location %}{% ifversion fpt or ghes or ghec %} and {% data variables.product.prodname_mobile %}{% endif %}
{% ifversion fpt or ghes or ghec %}
{% data reusables.notifications-v2.notifications-inbox-required-setting %} Weitere Informationen findest Du auf „[Deine Benachrichtigungseinstellungen wählen](#choosing-your-notification-settings)."
{% endif %}
{% data reusables.notifications.shared_state %}
### Benefits of the notifications inbox
The notifications inbox on {% data variables.product.product_location %}{% ifversion fpt or ghes or ghec %} and {% data variables.product.prodname_mobile %}{% endif %} includes triaging options designed specifically for your {% data variables.product.prodname_dotcom %} notifications flow, including options to:
- Selektieren mehrerer Benachrichtigungen auf einmal.
- Erledigte Benachrichtigungen als **Done** (Erledigt) markieren und aus dem Posteingang entfernen. Um alle Deine Benachrichtigungen anzuzeigen, die als **Done** markiert sind, verwende die Abfrage mit `is:done`.
- Sichere eine Benachrichtigung für späteren Review. Gesicherte Benachrichtigungen sind in Deinem Posteingang markiert und werden auf unbestimmte Zeit gehalten. Um alle Deine gesicherten Benachrichtigungen zu sehen, benutze die Abfrage mit `is:saved`.
- Melde eine Benachrichtigung ab und entferne sie aus dem Posteingang.
- Vorschau des Issue, Pull Request oder der Team-Diskussion, aus der die Benachrichtigung auf {% data variables.product.product_location %} erstellt wurde, direkt aus dem Posteingang der Benachrichtigungen.
- Siehe einen der neuesten Gründe, weshalb Du eine Benachrichtigung erhältst, über die Kennzeichnung `reasons` (Grund) in Deinem Posteingang.
- Erstelle benutzerdefinierte Filter, um auf Wunsch auf verschiedene Benachrichtigungen fokussieren zu können.
- Gruppiere Benachrichtigungen in Deinem Posteingang nach Repository oder Datum, um einen schnellen Überblick mit weniger Kontextwechseln zu erhalten
{% ifversion fpt or ghes or ghec %}
In addition, you can receive and triage notifications on your mobile device with {% data variables.product.prodname_mobile %}. For more information, see "[Managing your notification settings with GitHub for mobile](#managing-your-notification-settings-with-github-for-mobile)" or "[GitHub for mobile](/github/getting-started-with-github/github-for-mobile)."
{% endif %}
### Vorteile beim Benutzen eines E-Mail-Client für Benachrichtigungen
Ein Vorteil der Verwendung eines E-Mail-Clients ist, dass alle Deine Benachrichtigungen unbegrenzt aufbewahrt werden können, abhängig von der Speicherkapazität Deines E-Mail-Clients. Your inbox notifications are only kept for 5 months on {% data variables.product.prodname_dotcom %} unless you've marked them as **Saved**. Mit **Saved** (Gesichert) markierte Benachrichtigungen werden unbegrenzt gespeichert. Weitere Informationen zur Aufbewahrungsrichtlinie Deines Posteingangs findest Du unter „[Über Benachrichtigungen](/github/managing-subscriptions-and-notifications-on-github/about-notifications#notification-retention-policy)."
Benachrichtigungen an Deinen E-Mail-Client zu senden erlaubt Dir auch, Deinen Posteingang mit allen Einstellungen deines E-Mail-Clients anzupassen, welche allenfalls benutzerdefinierte oder farbcodierte Kennzeichnungen beinhalten.
E-Mail-Benachrichtigungen ermöglichen auch Flexibilität bei der Art von Benachrichtigungen, die Du erhältst und erlauben Dir die Auswahl verschiedener E-Mail-Adressen für Aktualisierungen. Beispielsweise kannst Du bestimmte Benachrichtigungen für ein Repository an die verifizierte persönliche E-Mail-Adresse senden. Weitere Informationen über E-Mail-Anpassungsoptionen findest Du unter „[Deine E-Mail-Benachrichtigungen anpassen](#customizing-your-email-notifications)."
## Über die Teilnahme und das Beobachten von Benachrichtigungen
Wenn Du ein Repository beobachtest, abonnierst Du Aktualisierungen für Aktivitäten in diesem Repository. Ebenfalls, wenn Du die Diskussionen eines bestimmten Teams verfolgst, abonnierst Du alle Aktualisierungen der Unterhaltung auf der Seite dieses Teams. Weitere Informationen finden Sie unter „[Informationen zu Teamdiskussionen](/organizations/collaborating-with-your-team/about-team-discussions)“.
To see repositories that you're watching, go to your [watching page](https://github.com/watching). Weitere Informationen findest Du unter „[Abonnements und Benachrichtigungen auf GitHub verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github)."
{% ifversion ghae or ghes < 3.1 %}
### Benachrichtigungen konfigurieren
{% endif %}
You can configure notifications for a repository on the repository page, or on your watching page.{% ifversion ghes < 3.1 %} You can choose to only receive notifications for releases in a repository, or ignore all notifications for a repository.{% endif %}
{% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
### About custom notifications
You can customize notifications for a repository. For example, you can choose to only be notified when updates to one or more types of events ({% data reusables.notifications-v2.custom-notification-types %}) happen within a repository, or ignore all notifications for a repository.
{% endif %} For more information, see "[Configuring your watch settings for an individual repository](#configuring-your-watch-settings-for-an-individual-repository)" below.
### Participating in conversations
Jedes Mal, wenn Du in einer Unterhaltung kommentierst oder wenn jemand Deinen Benutzernamen @erwähnt, bist Du _Teilnehmer_ in einer Unterhaltung. Standardmäßig abonnierst Du automatisch eine Unterhaltung, wenn Du daran teilnimmst. Du kannst Dich manuell von einer Unterhaltung abmelden, an der Du teilgenommen hast, indem Du auf dem Issue oder Pull Request auf **Unsubscribe** (Abmelden) klickst oder durch die Option **Unsubscribe** (Abmelden) im Posteingang für Benachrichtigungen.
For conversations you're watching or participating in, you can choose whether you want to receive notifications by email or through the notifications inbox on {% data variables.product.product_location %}{% ifversion fpt or ghes or ghec %} and {% data variables.product.prodname_mobile %}{% endif %}.
![Optionen für Teilnahme- und Beobachtungs-Benachrichtigungen](/assets/images/help/notifications-v2/participating-and-watching-options.png)
Ein Beispiel:
- Wenn Du nicht möchtest, dass Benachrichtigungen an Deine E-Mail gesendet werden, deaktiviere **email** (E-Mail) für die Teilnahme und das Beobachten von Benachrichtigungen.
- Wenn Du Benachrichtigungen per E-Mail erhalten möchtest, wenn Du an einer Unterhaltung teilgenommen hast, kannst du **email** (E-Mail) unter „Participating" (Teilnehmen) auswählen.
If you do not enable watching or participating notifications for web{% ifversion fpt or ghes or ghec %} and mobile{% endif %}, then your notifications inbox will not have any updates.
## E-Mail-Benachrichtigungen anpassen
Nach der Aktivierung von E-Mail-Benachrichtigungen sendet Ihnen {% data variables.product.product_location %} Benachrichtigungen als mehrteilige E-Mails, die sowohl HTML als auch reine Textkopien des Inhalts enthalten. Der Inhalt der E-Mail-Benachrichtigung umfasst alle Markdowns, @Erwähnungen, Emojis, Hash-Links usw., die im ursprünglichen Inhalt auf {% data variables.product.product_location %} erscheinen. Wenn Du nur den Text in der E-Mail sehen möchtest, kannst Du Deinen E-Mail-Client so konfigurieren, dass er nur die reine Textkopie anzeigt.
{% data reusables.notifications.outbound_email_tip %}
{% data reusables.notifications.shared_state %}
{% ifversion fpt or ghec %}
Wenn Sie Gmail verwenden, können Sie auf eine Schaltfläche neben der Benachrichtigungs-E-Mail klicken, um den ursprünglichen Issue bzw. Pull Request anzuzeigen, der die Benachrichtigung generiert hat.
![Schaltflächen in Gmail](/assets/images/help/notifications/gmail-buttons.png)
{% endif %}
Wähle eine Standard-E-Mail-Adresse, an die Du Aktualisierungen für Unterhaltungen senden willst, an denen Du teilnimmst oder die Du beobachtest. Du kannst auch definieren, für welche Aktivitäten auf {% data variables.product.product_location %} Du Aktualisierungen über Deine Standard-E-Mail-Adresse erhalten willst. Wähle zum Beispiel aus, ob Du Aktualisierungen an Deine Standard-E-Mail senden möchtest für:
- Kommentare für Issues und Pull Requests.
- Pull-Request-Reviews.
- Pull-Request-Pushes.
- Deine eigenen Aktualisierungen, wie wenn Du beispielsweise einen Issue oder Pull Request öffnest, kommentierst oder schließt.
Depending on the organization that owns the repository, you can also send notifications to different email addresses. Deine Organisation verlangt möglicherweise, dass E-Mail-Adressen für bestimmte Domänen verifiziert sein müssen. For more information, see "[Choosing where your organizations email notifications are sent](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#choosing-where-your-organizations-email-notifications-are-sent)."
You can also send notifications for a specific repository to an email address. Weitere Informationen findest Du unter "[Informationen zu E-Mail-Benachrichtigungen für Pushes in Dein Repository](/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository)."
{% data reusables.notifications-v2.email-notification-caveats %}
## E-Mail-Benachrichtigungen filtern
Jede E-Mail-Benachrichtigung, die {% data variables.product.product_location %} sendet, enthält Headerinformationen. Die Headerinformationen in jeder E-Mail sind einheitlich, sodass Sie sie in Ihrem E-Mail-Client verwenden können, um alle {% data variables.product.prodname_dotcom %}-Benachrichtigungen oder bestimmte Arten von {% data variables.product.prodname_dotcom %}-Benachrichtigungen zu filtern oder weiterzuleiten.
Wenn Du glaubst, dass Du Benachrichtigungen erhältst, die nicht zu Dir gehören, überprüfe die Header für `X-GitHub-Recipient` (Empfänger) und `X-GitHub-Recipient-Address` (Empfänger-Adresse). Diese Header zeigen an, wer der beabsichtigte Empfänger ist. Abhängig von Deiner E-Mail-Einrichtung erhältst Du möglicherweise Benachrichtigungen für einen anderen Benutzer.
E-Mail-Benachrichtigungen von {% data variables.product.product_location %} enthalten die folgenden Headerinformationen:
| Header | Informationen |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `From`-Adresse | Diese Adresse entspricht immer {% ifversion fpt or ghec %}'`notifications@github.com`'{% else %}'der von Deinem Websiteadministrator konfigurierten no-reply-E-Mail-Adresse'{% endif %}. |
| `To`-Feld | This field connects directly to the thread.{% ifversion not ghae %} If you reply to the email, you'll add a new comment to the conversation.{% endif %}
| `Cc`-Adresse | {% data variables.product.product_name %} fügt Sie zu `Cc` hinzu, wenn Sie eine Unterhaltung abonniert haben. Die zweite E-Mail-Adresse in `Cc` entspricht dem Benachrichtigungsgrund. Das Suffix für diese Benachrichtigungsgründe lautet {% data variables.notifications.cc_address %}. Zu den möglichen Benachrichtigungsgründen gehören folgende: <ul><li>`assign`: Dir wurde ein Issue oder Pull Request zugewiesen.</li><li>`author`: Du hast einen Issue oder Pull Request erstellt.</li><li>`ci_activity`: A {% data variables.product.prodname_actions %} workflow run that you triggered was completed.</li><li>`comment`: Du hast einen Issue oder Pull Request kommentiert.</li><li>`manual`: Ein Issue oder Pull Request, den Du manuell abonniert hast, wurde aktualisiert.</li><li>`mention`: Du wurdest in einem Issue oder Pull Request erwähnt.</li><li>`push`: Jemand hat einen Commit für einen Pull Request erstellt, den Du abonniert hast.</li><li>`review_requested`: Du oder ein Team, dem Du angehörst, wurdest/wurde gebeten, einen Review für einen Pull Request durchzuführen.</li>{% ifversion fpt or ghes or ghae-issue-4864 or ghec %}<li>`security_alert`: {% data variables.product.prodname_dotcom %} hat eine Schwachstelle in einem Repository erkannt, für das Du Sicherheitswarnungen erhältst.</li>{% endif %}<li>`state_change`: Ein Issue oder Pull Request, den Du abonniert hast, wurde entweder geschlossen oder geöffnet.</li><li>`subscribed`: Es gab eine Aktualisierung in einem Repository, das Du beobachtest.</li><li>`team_mention`: Ein Team, dem Du angehörst, wurde in einem Issue oder Pull Request erwähnt.</li><li>`your_activity`: Du hast einen Issue oder Pull Request geöffnet, kommentiert oder geschlossen.</li></ul> |
| `mailing list`-Feld | In diesem Feld werden der Name des Repositorys und sein Inhaber identifiziert. Das Format dieser Adresse lautet immer `<repository name>.<repository owner>.{% data variables.command_line.backticks %}`. |{% ifversion fpt or ghes or ghae-issue-4864 or ghec %}
| `X-GitHub-Severity`-Feld | {% data reusables.repositories.security-alerts-x-github-severity %} Die möglichen Schweregrade sind:<ul><li>`low`</li><li>`moderate`</li><li>`high`</li><li>`critical`</li></ul>For more information, see "[About alerts for vulnerable dependencies](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies)." |
{% endif %}
## Wähle Deine Benachrichtigungseinstellungen
{% data reusables.notifications.access_notifications %}
{% data reusables.notifications-v2.manage-notifications %}
3. Auf der Seite für Benachrichtigungseinstellungen wählst Du, wie Du Benachrichtigungen erhalten willst, wenn:
- Es Aktualisierungen in Repositories oder Teamdiskussionen gibt, die Du beobachtest, oder in einer Unterhaltung, an der Du teilnimmst. Weitere Informationen findest Du unter „[Über die Teilnahme an und das Beobachten von Benachrichtigungen](#about-participating-and-watching-notifications)."
- Du Zugriff erhältst auf ein neues Repository oder wenn Du einem neuen Team beigetreten bist. For more information, see "[Automatic watching](#automatic-watching)."{% ifversion fpt or ghes or ghae-issue-4864 or ghec %}
- There are new {% if page.version == 'dotcom' %} {% data variables.product.prodname_dependabot_alerts %} {% else %} security alerts {% endif %} in your repository. Weitere Informationen findest Du unter „[{% data variables.product.prodname_dependabot_alerts %} Benachrichtigungsoptionen](#dependabot-alerts-notification-options)." {% endif %} {% ifversion fpt or ghec %}
- Es Aktualisierungen zu Workflow-Ausführungen auf Repositorys gibt, die mit {% data variables.product.prodname_actions %} aufgesetzt wurden. For more information, see "[{% data variables.product.prodname_actions %} notification options](#github-actions-notification-options)."{% endif %}
## Automatisches Beobachten
Standardmäßig wirst Du jedes Mal, wenn Du Zugriff auf ein neues Repository erhältst, automatisch mit der Beobachtung dieses Repository beginnen. Jedes mal, wenn Du einem neuen Team beitrittst, abonnierst Du automatisch Aktualisierungen und erhältst Benachrichtigungen, wenn dieses Team @erwähnt ist. Wenn Du keine automatischen Abonnements möchtest, kannst Du die automatischen Beobachtungsoptionen deaktivieren.
![Optionen für automatisches Beobachten](/assets/images/help/notifications-v2/automatic-watching-options.png)
Wenn "Automatisch Repositories beobachten" deaktiviert ist, wirst Du auch nicht automatisch Deine eigenen Repositorys beobachten. Du musst dann zu Deiner Repository-Seite navigieren und die Beobachtungsoption wählen.
## Konfiguration der Beobachtungseinstellungen für ein einzelnes Repository
Du kannst wählen, ob Du ein einzelnes Repository ansehen möchtest oder nicht mehr. You can also choose to only be notified of {% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}certain event types such as {% data reusables.notifications-v2.custom-notification-types %} (if enabled for the repository) {% else %}new releases{% endif %}, or completely ignore an individual repository.
{% data reusables.repositories.navigate-to-repo %}
2. In the upper-right corner, select the "Watch" drop-down menu to click a watch option.
{% ifversion fpt or ghes > 3.0 or ghae-issue-4910 or ghec %}
![Beobachtungsoptionen in einem Dropdownmenü für ein Repository](/assets/images/help/notifications-v2/watch-repository-options-custom.png)
The **Custom** option allows you to further customize notifications so that you're only notified when specific events happen in the repository, in addition to participating and @mentions.
{% else %}
![Beobachtungsoptionen in einem Dropdownmenü für ein Repository](/assets/images/help/notifications-v2/watch-repository-options.png){% endif %}
{% ifversion fpt or ghes > 3.0 or ghae-issue-4910 or ghec %}
![Custom watch options in a drop-down menu for a repository](/assets/images/help/notifications-v2/watch-repository-options-custom2-dotcom.png) If you select "Issues", you will be notified about, and subscribed to, updates on every issue (including those that existed prior to you selecting this option) in the repository. If you're @mentioned in a pull request in this repository, you'll receive notifications for that too, and you'll be subscribed to updates on that specific pull request, in addition to being notified about issues.
{% endif %}
## Wähle, wohin die E-Mail-Benachrichtigungen Deiner Organisation gesendet werden
Wenn Sie einer Organisation angehören, können Sie das E-Mail-Konto auswählen, an das die Benachrichtigungen für Aktivitäten in der Organisation gesendet werden sollen. Wenn Sie z. B. einer Organisation für die Arbeit angehören, könnten Sie sich die Benachrichtigungen an Ihre berufliche E-Mail-Adresse senden lassen statt an Ihre private.
{% data reusables.notifications-v2.email-notification-caveats %}
{% data reusables.notifications.access_notifications %}
{% data reusables.notifications-v2.manage-notifications %}
3. Wählen Sie unter „Default notification email“ (Standardmäßige Benachrichtigungs-E-Mail-Adresse) die E-Mail-Adresse aus, an die Benachrichtigungen gesendet werden sollen.
![Dropdownmenü mit standardmäßiger Benachrichtigungs-E-Mail-Adresse](/assets/images/help/notifications/notifications_primary_email_for_orgs.png)
4. Klicke auf **Save** (Speichern).
### E-Mail-Routen pro Organisation anpassen
If you are a member of more than one organization, you can configure each one to send notifications to any of{% ifversion fpt or ghec %} your verified email addresses{% else %} the email addresses for your account{% endif %}. {% ifversion fpt or ghec %} For more information, see "[Verifying your email address](/articles/verifying-your-email-address)."{% endif %}
{% data reusables.notifications.access_notifications %}
{% data reusables.notifications-v2.manage-notifications %}
3. Suchen Sie in der Liste unter „Custom routing“ (Benutzerdefiniertes Routing) den Namen Ihrer Organisation.
![Liste der Organisationen und E-Mail-Adressen](/assets/images/help/notifications/notifications_org_emails.png)
4. Klicke neben der E-Mail-Adresse, die Du ändern möchtest, auf **Edit** (Bearbeiten). ![E-Mail-Adressen einer Organisation bearbeiten](/assets/images/help/notifications/notifications_edit_org_emails.png)
5. Wähle eine Deiner verifizierten E-Mail-Adressen aus, und klicke dann auf **Save** (Speichern).
![Eigene E-Mail-Adressen pro Organisation ändern](/assets/images/help/notifications/notifications_switching_org_email.gif)
{% ifversion fpt or ghes or ghae-issue-4864 or ghec %}
## {% data variables.product.prodname_dependabot_alerts %} Benachrichtigungsoptionen
{% data reusables.notifications.vulnerable-dependency-notification-enable %}
{% data reusables.notifications.vulnerable-dependency-notification-delivery-method-customization2 %}
{% data reusables.notifications.vulnerable-dependency-notification-options %}
For more information about the notification delivery methods available to you, and advice on optimizing your notifications for {% ifversion fpt or ghes or ghec %}{% data variables.product.prodname_dependabot_alerts %}{% else %}security alerts{% endif %}, see "[Configuring notifications for vulnerable dependencies](/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies)."
{% endif %}
{% ifversion fpt or ghes or ghec %}
## {% data variables.product.prodname_actions %} Benachrichtigungsoptionen
Wähle, wie Du Aktualisierungen für Workflow-Ausführungen erhalten willst für Repositorys, die Du beobachtest und die mit {% data variables.product.prodname_actions %} aufgesetzt sind. Du kannst auch wählen, nur Benachrichtigungen für fehlgeschlagene Workflow-Ausführungen zu erhalten.
![Notification options for {% data variables.product.prodname_actions %}](/assets/images/help/notifications-v2/github-actions-notification-options.png)
{% endif %}
{% ifversion fpt or ghes or ghec %}
## Managing your notification settings with {% data variables.product.prodname_mobile %}
Wenn Du {% data variables.product.prodname_mobile %} installierst, bist Du automatisch für Web-Benachrichtigungen abonniert. Within the app, you can enable push notifications for the following events.
- Direct mentions
- Assignments to issues or pull requests
- Requests to review a pull request
- Requests to approve a deployment
You can also schedule when {% data variables.product.prodname_mobile %} will send push notifications to your mobile device.
{% data reusables.mobile.push-notifications-on-ghes %}
### Managing your notification settings with {% data variables.product.prodname_ios %}
1. In the bottom menu, tap **Profile**.
2. Um deine Einstellungen zu sehen, tippe auf {% octicon "gear" aria-label="The Gear icon" %}.
3. To update your notification settings, tap **Notifications** and then use the toggles to enable or disable your preferred types of push notifications.
4. Optionally, to schedule when {% data variables.product.prodname_mobile %} will send push notifications to your mobile device, tap **Working Hours**, use the **Custom working hours** toggle, and then choose when you would like to receive push notifications.
### Managing your notification settings with {% data variables.product.prodname_android %}
1. In the bottom menu, tap **Profile**.
2. Um deine Einstellungen zu sehen, tippe auf {% octicon "gear" aria-label="The Gear icon" %}.
3. To update your notification settings, tap **Configure Notifications** and then use the toggles to enable or disable your preferred types of push notifications.
4. Optionally, to schedule when {% data variables.product.prodname_mobile %} will send push notifications to your mobile device, tap **Working Hours**, use the **Custom working hours** toggle, and then choose when you would like to receive push notifications.
## Configuring your watch settings for an individual repository with {% data variables.product.prodname_mobile %}
Du kannst wählen, ob Du ein einzelnes Repository ansehen möchtest oder nicht mehr. You can also choose to only be notified of {% ifversion fpt or ghec %}certain event types such as issues, pull requests, discussions (if enabled for the repository) and {% endif %}new releases, or completely ignore an individual repository.
1. Navigieren Sie in {% data variables.product.prodname_mobile %} zur Repository-Hauptseite.
2. Tap **Watch**. ![The watch button on {% data variables.product.prodname_mobile %}](/assets/images/help/notifications-v2/mobile-watch-button.png)
3. To choose what activities you receive notifications for, tap your preferred watch settings. ![Watch settings dropdown menu in {% data variables.product.prodname_mobile %}](/assets/images/help/notifications-v2/mobile-watch-settings.png)
{% endif %}

View File

@@ -1,18 +0,0 @@
---
title: Benachrichtigungen einrichten
intro: 'Um die Relevanz Deiner Benachrichtigungen zu verbessern und den Selektions-Workflow zu vereinfachen, richte Deine Benachrichtigungen entsprechend Deinen Prioritäten ein.'
redirect_from:
- /articles/getting-started-with-notifications
- /github/managing-subscriptions-and-notifications-on-github/setting-up-notifications
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
children:
- /about-notifications
- /configuring-notifications
---

View File

@@ -1,73 +0,0 @@
---
title: Anpassen eines Workflows zum Selektieren Deiner Benachrichtigungen
intro: 'Um einen idealen Workflow für das Selektieren Deiner Benachrichtigungen zu erstellen, kannst Du diese Workflow-Beispiele übernehmen und anpassen.'
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
redirect_from:
- /github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications
- /github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications/customizing-a-workflow-for-triaging-your-notifications
shortTitle: Triage your notifications
---
## Beginne Deine Posteingang-Selektion
Bevor Du mit der Selektion in Deinem Posteingang beginnst, überlege Dir, ob Du zuerst die wichtigsten Aktualisierungen finden und beantworten möchtest, oder ob Du zuerst Deinen Posteingang von störenden Benachrichtigungen leeren möchtest, die einfach zu finden und zu entfernen sind.
Ja nach Anzahl Deiner Benachrichtigungen kannst Du zu verschiedenen Zeiten auch eine Kombination der beiden Ansätze wählen.
Ein Workflow-Beispiel zum Finden und Beantworten der wichtigsten Benachrichtigungen findest Du unter „[Deine Benachrichtigungen mit höchster Priorität prüfen](#checking-your-highest-notification-priorities)."
Ein Workflow-Beispiel zum Entfernen von Benachrichtigungen, die einfach zu selektieren und löschen sind, findest Du unter „[Deine am wenigsten wichtigen Benachrichtigungen löschen](#clearing-your-least-important-notifications)."
## Deine Benachrichtigungen mit höchster Priorität prüfen
Entscheide, welche Art von Benachrichtigungen am dringendsten überprüft werden müssen und wähle einen Zeitpunkt für den Review, der für Dich am besten ist. Du solltest Dir überlegen „Wen blockiere ich?"
Du kannst Dich beispielsweise dazu entscheiden, Deine Benachrichtigungen am Morgen während Deiner Tages-Planungszeit in folgender Reihenfolge zu prüfen:
- Pull Requests, bei denen Dein Review angefordert ist. (gefiltert nach `reason:review-requested` (Grund: Review angefordert))
- Ereignisse, in denen Deine Benutzername @erwähnt ist, auch direkte Erwähnungen genannt. (gefiltert nach `reason:mention` (Grund: erwähnt))
- Ereignisse, in denen ein Team @erwähnt ist, in dem Du Mitglied bist, auch Team-Erwähnungen genannt. (gefiltert nach `reason:team-mention` (Grund: Team-Erwähnung))
- CI-Workflow-Fehler für ein bestimmtest Repository. (filtere nach `reason:ci-activity` (Grund: CI-Aktivität) und `repo:owner/repo-name` (Grund: Inhaber/Repository-Name) und stelle sicher, dass Du CI-Aktivitätsbenachrichtigungen für Workflow-Fehler in Deinen Benachrichtigungseinstellungen aktiviert hast)
{% tip %}
**Tipp:** Um Deine höchsten Prioritäten schnell zu überprüfen, richte benutzerdefinierte Filter in der Reihenfolge ihrer Überprüfungspriorität ein. Weitere Informationen findest Du unter „[Benachrichtigungen über Deinen Posteingang verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox#customizing-your-inbox-with-custom-filters)."
{% endtip %}
## Nachverfolgung laufender Benachrichtigungsaktualisierungen
Um Benachrichtigungen nachzuverfolgen, überlege Dir auch „Über was wurde ich blockiert und bin es nicht mehr?" Wähle dann Die Prioritäten der Nachverfolgung Deiner Benachrichtigungen.
Beispielsweise kannst Du folgende Reihenfolge für die Nachverfolgung wählen:
- Issues und Pull Requests, denen Du zugeordnet bist. Schließe sofort alle möglichen Issues und Pull Requests und füge Aktualisierungen hinzu. Bei Bedarf sicherer Benachrichtigungen für eine spätere Überprüfung.
- Überprüfe Benachrichtigungen, die Du in Deinem Posteingang gesichert hast, vor allem ungelesene Aktualisierungen. Wenn der Thread nicht mehr relevant ist, deaktiviere {% octicon "bookmark" aria-label="The bookmark icon" %} um die Benachrichtigung aus Deinem Posteingang gesicherter Benachrichtigungen zu entfernen.
## Benachrichtigungen mit niedriger Priorität verwalten
Nach der Prüfung der Benachrichtigungen mit höherer Priorität überprüfe nun die verbleibenden Benachrichtigungen, wie beispielsweise Teilnahmebenachrichtigungen. Betrachte dazu diese Fragen:
- Kann ich diese Benachrichtigung abmelden? Ist diese Benachrichtigung abgeschlossen und kann als **Done** (Erledigt) markiert werden?
{% tip %}
**Tipp:** Wenn Du Dich von einer Benachrichtigung abmeldest, erhältst Du keine neuen Updates, es sei denn, Du beginnst am Thread teilzunehmen oder Du wirst @erwähnt oder ein Team, dem Du angehörst wird @erwähnt. Wenn Du einen Benachrichtigung als **Done**(Erledigt) markierst, wird die Benachrichtigung aus der Hauptansicht Deines Posteingangs entfernt und kann mit der Abfrage `is:read` (ist gelesen) gefunden werden. Weitere Informationen findest du unter „[Benachrichtigungen über Deinen Posteingang verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox#triaging-options)."
{% endtip %}
- Möchtest Du zukünftige Aktualisierungen erhalten, wenn dieser Issue oder Pull Request geschlossen oder wieder geöffnet wird oder wenn ein Pull Request zusammengeführt wird? Weitere Informationen zu diesen Möglichkeiten findest Du unter „[Eine einzelne Benachrichtigung selektieren](/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification#customizing-when-to-receive-future-updates-for-an-issue-or-pull-request)."
- Möchtest Du in Zukunft keine solchen Benachrichtigungen mehr erhalten? Falls ja, erwäge Dich abzumelden. Weitere Informationen findest Du unter „[Abonnements für Aktivitäten auf GitHub verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github)."
## Deine am wenigsten wichtigen Benachrichtigungen löschen
Wähle aus, welche Art von Benachrichtigungen für Dich am schnellsten und am einfachsten zu selektieren und aus Deinem Posteingang zu entfernen sind, wobei Du idealerweise mehrere Benachrichtigungen gleichzeitig selektieren kannst.
For example, you may decide to clear notifications in this order:
- Teilnahmebenachrichtigungen, von denen Du Dich abmelden kannst.
- Aktualisierungen von Repositorys, die nicht relevant sind um aufbewahrt oder nachverfolgt zu werden.
Weitere Informationen zum gleichzeitigen Verwalten von mehreren Benachrichtigungen in Deinem Posteingang findest Du unter „[ Benachrichtigungen über Deinen Posteingang verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox#triaging-multiple-notifications-at-the-same-time)."
Du kannst auch erwägen, Deine Benachrichtigungseinstellungen zu ändern oder Dich wenn möglich von diesen Aktualisierungen abzumelden. Weitere Informationen findest Du unter „[Benachrichtigungen konfigurieren](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications)" oder „[Abonnements für Aktivitäten auf GitHub verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github)."

View File

@@ -1,21 +0,0 @@
---
title: Benachrichtigungen anschauen und selektieren
intro: 'Um Deinen Workflow für Benachrichtigungen zu optimieren, kannst Du anpassen, wie Du Benachrichtigungen ansehen und selektieren willst.'
redirect_from:
- /articles/managing-notifications/
- /articles/managing-your-notifications
- /github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
children:
- /managing-notifications-from-your-inbox
- /triaging-a-single-notification
- /customizing-a-workflow-for-triaging-your-notifications
shortTitle: Customize a workflow
---

View File

@@ -1,189 +0,0 @@
---
title: Benachrichtigungen über Deinen Posteingang verwalten
intro: 'Use your inbox to quickly triage and sync your notifications across email{% ifversion fpt or ghes or ghec %} and mobile{% endif %}.'
redirect_from:
- /articles/marking-notifications-as-read
- /articles/saving-notifications-for-later
- /github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox
- /github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications/managing-notifications-from-your-inbox
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
shortTitle: Manage from your inbox
---
{% ifversion ghes %}
{% data reusables.mobile.ghes-release-phase %}
{% endif %}
## Über Deinen Posteingang
{% ifversion fpt or ghes or ghec %}
{% data reusables.notifications-v2.notifications-inbox-required-setting %} Weitere Informationen findest Du unter „[Benachrichtigungen konfigurieren](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#choosing-your-notification-settings).“
{% endif %}
Um auf Deinen Posteingang für Benachrichtigungen zuzugreifen, klicke in der rechten oberen Ecke einer beliebigen Seite auf {% octicon "bell" aria-label="The notifications bell" %}.
![Benachrichtigung, die auf eine ungelesene Mitteilung hinweist](/assets/images/help/notifications/notifications_general_existence_indicator.png)
Dein Posteingang zeigt alle Benachrichtigungen, die Du nicht abgemeldet oder als **Done** (Erledigt) markiert hast. Du kannst Deinen Posteingang so anpassen, dass er Deinem Workflow am besten entspricht, indem Du Filter verwendest, alle oder nur ungelesene Benachrichtigungen anzeigst und Deine Benachrichtigungen gruppierst, um eine schnelle Übersicht zu erhalten.
![Posteingangsansicht](/assets/images/help/notifications-v2/inbox-view.png)
Standardmäßig werden in Deinem Posteingang gelesene und ungelesene Benachrichtigungen angezeigt. Um nur ungelesene Benachrichtigungen zu sehen, klicke auf **Unread** (Ungelesen) oder verwende die Abfrage `is:unread` (ist ungelesen).
![Posteingangsansicht ungelesene Benachrichtigungen](/assets/images/help/notifications-v2/unread-inbox-view.png)
## Selektionsoptionen
Du hast mehrere Optionen, um Benachrichtigungen in Deinem Posteingang zu selektieren.
| Selektionsoptionen | Beschreibung |
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Save (Gesichert) | Sichert Deine Benachrichtigung für spätere Überprüfung. Um eine Benachrichtigung zu sichern, klicke rechts neben der Benachrichtigung auf {% octicon "bookmark" aria-label="The bookmark icon" %}. <br> <br> Gesicherte Benachrichtigungen werden unbegrenzt gespeichert und können durch klicken auf **Saved** (Gesichert) in der Seitenleiste angezeigt werden oder mit der Abfrage `is:saved` (ist gesichert). Wenn Deine gesicherte Benachrichtigung älter als 5 Monate ist und Du sie nicht mehr sicherst, wird die Benachrichtigung innerhalb eines Tages aus Deinem Posteingang entfernt. |
| Done (Erledigt) | Markiert eine Benachrichtigung als erledigt und entfernt die Benachrichtigung aus Deinem Posteingang. Du kannst alle abgeschlossenen Benachrichtigungen sehen, indem Du in der Seitenleiste auf **Done** (erledigt) klickst oder die Abfrage `is:done` (ist erledigt) verwendest. Benachrichtigungen mit Markierung **Done** (erledigt) werden für 5 Monate gespeichert. |
| Kündigen | Löscht automatisch die Benachrichtigung aus Deinem Posteingang und meldet Dich von der Unterhaltung ab, bis Du @erwähnt wirst, ein Team, dem Du angehörst, wird @erwähnt, oder Du wirst zur Überprüfung angefordert. |
| Read (Gelesen) | Markiert eine Benachrichtigung als gelesen. Um nur gelesene Benachrichtigungen in Deinem Posteingang anzuzeigen, verwende die Abfrage `is:read` (ist gelesen). Diese Abfrage enthält keine Benachrichtigungen mit Markierung **Done** (erledigt). |
| Unread (Ungelesen) | Markiert Benachrichtigungen als ungelesen. Um nur ungelesene Benachrichtigungen in Deinem Posteingang anzuzeigen, verwende die Abfrage `is:unread` (ist ungelesen). |
Um die verfügbaren Tastaturkürzel zu sehen, lies bitte „[Tastaturkürzel](/github/getting-started-with-github/keyboard-shortcuts#notifications)."
Bevor Du eine Selektionsoption wählst, kannst Du die Details Deiner Benachrichtigung zuerst anzeigen und untersuchen. Weitere Informationen findest Du unter „[Eine einzelne Benachrichtigung auswählen](/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification)."
## Mehrere Benachrichtigungen gleichzeitig selektieren
Um mehrere Benachrichtigungen gleichzeitig zu selektieren, wähle die entsprechenden Benachrichtigungen aus und verwende das {% octicon "kebab-horizontal" aria-label="The edit icon" %}-Dropdownmenü, um eine Selektionsoption auszuwählen.
![Dropdownmenü mit Selektionsoptionen und ausgewählten Benachrichtigungen](/assets/images/help/notifications-v2/triage-multiple-notifications-together.png)
## Standard-Benachrichtigungsfilter
Standardmäßig hat Dein Posteingang Filter für Fälle, wenn Du zugewiesen bist, an einem Thread teilnimmst, für einen Pull-Request-Review angefordert bist, wenn Deine Benutzername direkt @erwähnt wird oder wenn ein Team, in dem Du Mitglied bist, @erwähnt wird.
![Standardmäßige benutzerdefinierte Filter](/assets/images/help/notifications-v2/default-filters.png)
## Deinen Posteingang mit benutzerdefinierten Filtern anpassen
Du kannst bis zu 15 eigene, benutzerdefinierte Filter hinzufügen.
{% data reusables.notifications.access_notifications %}
2. Um die Filtereinstellungen zu öffnen, klicke in der linken Seitenleiste neben „Filters" (Filter) auf {% octicon "gear" aria-label="The Gear icon" %}.
{% tip %}
**Tipp:** Du kannst schnell eine Vorschau des Resultats Deines Posteingang-Filters erstellen, indem Du eine Abfrage in der Ansicht Deines Posteingangs erstellst und **Save** klickst, was die Einstellungen für benutzerdefinierte Filter öffnet.
{% endtip %}
3. Füge Deinem Filter einen Namen und eine Filterabfrage hinzu. Um beispielsweise nur Benachrichtigungen für ein bestimmtes Repository zu sehen, kannst du einen Filter mit der Abfrage `repo:octocat/open-source-project-name reason:participating` erstellen. Du kannst auch Emojis mit einer lokalen Emoji-Tastatur hinzufügen. Eine Liste der unterstützten Suchanfragen findest Du unter "[Unterstützte Suchanfragen für benutzerdefinierte Filter](#supported-queries-for-custom-filters)."
![Beispiel für benutzerdefinierte Filter](/assets/images/help/notifications-v2/custom-filter-example.png)
4. Klicke auf **Create** (Erstellen).
## Beschränkungen für benutzerdefinierte Filter
Benutzerdefinierte Filter unterstützen im Moment nicht:
- Volltextsuche in Deinem Posteingang, einschließlich die Suche nach Pull-Request- oder Issue-Titeln.
- Die Unterscheidung zwischen `is:issue`-, `is:pr`-, und `is:pull-request`-Abfragefiltern. Diese Abfragen werden sowohl Issues wie Pull Request zurückgeben.
- Das Erstellen von mehr als 15 benutzerdefinierten Filtern.
- Das Ändern der Standardfilter oder deren Reihenfolge.
- Search [exclusion](/github/searching-for-information-on-github/understanding-the-search-syntax#exclude-certain-results) using `NOT` or `-QUALIFIER`.
## Unterstützte Abfragen für benutzerdefinierte Filter
These are the types of filters that you can use:
- Nach Repository filtern mit `Repo:`
- Nach Diskussionstyp filtern mit `is:`
- Filter by notification reason with `reason:`{% ifversion fpt or ghec %}
- Filter by notification author with `author:`
- Filter by organization with `org:`{% endif %}
### Supported `repo:` queries
To add a `repo:` filter, you must include the owner of the repository in the query: `repo:owner/repository`. An owner is the organization or the user who owns the {% data variables.product.prodname_dotcom %} asset that triggers the notification. For example, `repo:octo-org/octo-repo` will show notifications triggered in the octo-repo repository within the octo-org organization.
### Unterstützte `is:`-Abfragen
Um Benachrichtigungen nach bestimmten Aktivitäten auf {% data variables.product.product_location %} zu filtern, kannst du die Abfrage `is` verwenden. For example, to only see repository invitation updates, use `is:repository-invitation`{% ifversion not ghae %}, and to only see {% ifversion fpt or ghes or ghec %}{% data variables.product.prodname_dependabot %}{% else %} security{% endif %} alerts, use `is:repository-vulnerability-alert`.{% endif %}
- `is:check-suite`
- `is:commit`
- `is:gist`
- `is:issue-or-pull-request`
- `is:release`
- `is:repository-invitation`{% ifversion fpt or ghes or ghae-issue-4864 or ghec %}
- `is:repository-vulnerability-alert`{% endif %}{% ifversion fpt or ghec %}
- `is:repository-advisory`{% endif %}
- `is:team-discussion`{% ifversion fpt or ghec %}
- `is:discussion`{% endif %}
{% ifversion fpt or ghes or ghae-issue-4864 or ghec %}
For information about reducing noise from notifications for {% data variables.product.prodname_dependabot_alerts %}, see "[Configuring notifications for vulnerable dependencies](/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies)."
{% endif %}
Du kannst die Abfrage `is:` auch verwenden, um zu beschreiben, wie die Benachrichtigung selektiert wurde.
- `is:saved`
- `is:done`
- `is:unread`
- `is:read`
### Unterstützte `reason:`-Abfragen
Um Benachrichtigungen nach dem Grund zu filtern, weshalb Du eine Aktualisierung erhalten hast, kannst Du die Abfrage `reason:` (Grund) verwenden. Um beispielsweise Benachrichtigungen zu sehen, in denen Du (oder ein Team, dem Du angehörst) zu einem Pull-Request-Review aufgefordert bist, benutze die Abfrage `reason:review-requested`. Weitere Informationen findest Du unter „[Informationen zu Benachrichtigungen](/github/managing-subscriptions-and-notifications-on-github/about-notifications#reasons-for-receiving-notifications).“
| Abfrage | Beschreibung |
| ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
| `reason:assign` | Wenn es eine Aktualisierung zu einem Issue oder Pull Request gibt, denen Du zugewiesen bist. |
| `reason:author` | Wenn es eine Aktualisierung oder einen neuen Kommentar zu einem Pull Request oder Issue gibt, die Du eröffnet hast. |
| `reason:comment` | Wenn Du einen Issue, einen Pull Request oder eine Teamdiskussion kommentiert hast. |
| `reason:participating` | Wenn Du einen Issue, einen Pull Request oder eine Teamdiskussion kommentiert hast, oder wenn Du @erwähnt wurdest. |
| `reason:invitation` | Wenn Du in ein Team, eine Organisation oder ein Repository eingeladen wirst. |
| `reason:manual` | Wenn Du auf einem Issue oder Pull Request **Subscribe** (Abonnieren) klickst, die Du noch nicht abonniert hattest. |
| `reason:mention` | Du wurdest direkt @erwähnt. |
| `reason:review-requested` | You or a team you're on have been requested to review a pull request.{% ifversion fpt or ghes or ghae-issue-4864 or ghec %}
| `reason:security-alert` | When a security alert is issued for a repository.{% endif %}
| `reason:state-change` | Wenn der Status eines Pull Request oder Issue geändert wird. Beispielsweise wird ein Issue geschlossen oder ein Pull Request zusammengeführt. |
| `reason:team-mention` | Wenn ein Team, dem Du angehörst, @erwähnt wird. |
| `reason:ci-activity` | Wenn ein Repository CI-Aktualisierungen hat, wie beispielsweise einen neuen Status für eine Workflow-Ausführung. |
{% ifversion fpt or ghec %}
### Supported `author:` queries
To filter notifications by user, you can use the `author:` query. An author is the original author of the thread (issue, pull request, gist, discussions, and so on) for which you are being notified. For example, to see notifications for threads created by the Octocat user, use `author:octocat`.
### Supported `org:` queries
To filter notifications by organization, you can use the `org` query. The organization you need to specify in the query is the organization of the repository for which you are being notified on {% data variables.product.prodname_dotcom %}. This query is useful if you belong to several organizations, and want to see notifications for a specific organization.
For example, to see notifications from the octo-org organization, use `org:octo-org`.
{% endif %}
{% ifversion fpt or ghes or ghae-issue-4864 or ghec %}
## {% data variables.product.prodname_dependabot %} custom filters
{% ifversion fpt or ghec %}
If you use {% data variables.product.prodname_dependabot %} to keep your dependencies up-to-date, you can use and save these custom filters:
- `is:repository_vulnerability_alert` to show notifications for {% data variables.product.prodname_dependabot_alerts %}.
- `reason:security_alert` to show notifications for {% data variables.product.prodname_dependabot_alerts %} and security update pull requests.
- `author:app/dependabot` to show notifications generated by {% data variables.product.prodname_dependabot %}. This includes {% data variables.product.prodname_dependabot_alerts %}, security update pull requests, and version update pull requests.
For more information about {% data variables.product.prodname_dependabot %}, see "[About managing vulnerable dependencies](/github/managing-security-vulnerabilities/about-managing-vulnerable-dependencies)."
{% endif %}
{% ifversion ghes or ghae-issue-4864 %}
If you use {% data variables.product.prodname_dependabot %} to keep your dependencies-up-to-date, you can use and save these custom filters to show notifications for {% data variables.product.prodname_dependabot_alerts %}:
- `is:repository_vulnerability_alert`
- `reason:security_alert`
For more information about {% data variables.product.prodname_dependabot %}, see "[About alerts for vulnerable dependencies](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies)."
{% endif %}
{% endif %}

View File

@@ -1,48 +0,0 @@
---
title: Eine einzige Benachrichtigung selektieren
intro: 'Wenn du eine einzelne Benachrichtigung überprüfen und untersuchen willst, hast Du verschiedene Auswahlmöglichkeiten, die für die detaillierte Benachrichtigungs-Ansicht optimiert sind.'
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Notifications
redirect_from:
- /github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification
- /github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications/triaging-a-single-notification
shortTitle: Triage a notification
---
## Sichern einer einzelnen Benachrichtigung
Um eine einzelne Benachrichtigung zu für einen späteren Review zu sichern, klicke rechts neben der Benachrichtigung auf {% octicon "bookmark" aria-label="The bookmark icon" %}. Du kannst nur eine Benachrichtigung nach der Anderen sichern.
Gesicherte Benachrichtigungen werden unbegrenzt gespeichert und können durch klicken auf **Saved** (Gesichert) in der Seitenleiste angezeigt werden oder mit der Abfrage `is:saved` (ist gesichert). Wenn Deine gesicherte Benachrichtigung älter als 5 Monate ist und Du sie nicht mehr sicherst, wird die Benachrichtigung innerhalb eines Tages aus Deinem Posteingang entfernt.
![Selektions-Option speichern](/assets/images/help/notifications-v2/save-triaging-option.png)
## Eine Benachrichtigung untersuchen
Wenn Du eine individuelle Benachrichtigung aus Deinem Posteingang anklickst, wirst Du an die Unterhaltung weitergeleitet, die die Benachrichtigung ausgelöst hat. Oben auf der Seite kannst Du:
- Die einzelne Benachrichtigung als erledigt markieren
- Künftige Benachrichtigungen abmelden
- Die Benachrichtigung als gelesen markieren
- Die Benachrichtigung für später sichern
- Zu Deinem Postfach für Benachrichtigungen zurück gehen
Weitere Informationen über Selektionsoptionen findest Du unter „[Benachrichtigungen aus Deinem Postfach verwalten](/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox#triaging-options)."
## Anpassen, wann künftige Aktualisierungen für einen Issue oder Pull Request erhalten werden sollen
Du kannst wählen, wie Du zukünftige Benachrichtigungen für einen spezifischen Issue oder einen Pull Request erhalten willst.
1. In der rechten Spalte des Issue oder Pull Requests, klicke neben „Notifications" (Benachrichtigungen) auf **Customize** (Anpassen).
![Anpassungs-Option under "Notifications" (Benachrichtigungen)](/assets/images/help/notifications-v2/customize-notifications-for-specific-thread.png)
2. Wähle **Custom** (Benutzerdefiniert) und entscheide, wann du Aktualisierungen für Benachrichtigungen dieses Thread erhalten willst. Du kannst zum Beispiel wählen, ob Du eine Aktualisierung erhältst, wenn der Pull Request zusammengeführt, geschlossen oder wieder geöffnet wurde. Du wirst wieder abonniert, wenn Du am Thread teilnimmst, Dein Benutzername oder ein Team, in dem Du Mitglied bist, @erwähnt wird.
![Optionen zum Anpassen von Benachrichtigungen](/assets/images/help/notifications-v2/custom-options-for-customizing-notification-thread-updates.png)
3. Klicke auf **Save** (Speichern).

View File

@@ -1,31 +0,0 @@
---
title: Informationen zum Profil Deiner Organisation
intro: Auf der Profilseite Deiner Organisation werden grundlegende Informationen zu Deiner Organisation angezeigt.
redirect_from:
- /articles/about-your-organization-s-profile
- /articles/about-your-organizations-profile
- /github/setting-up-and-managing-your-github-profile/about-your-organizations-profile
- /github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Profiles
shortTitle: Organization's profile
---
You can optionally choose to add a description, location, website, and email address for your organization, and pin important repositories.{% ifversion not ghes and not ghae %} You can customize your organization's profile by adding a README.md file. For more information, see "[Customizing your organization's profile](/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile)."{% endif %}
{% ifversion fpt or ghec %}Um die Identität Ihrer Organisation zu bestätigen und einen „Verifiziert“-Badge auf der Profilseite Ihrer Organisation anzuzeigen, müssen Sie die Domains Ihrer Organisation mit {% data variables.product.product_name %} verifizieren. For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)."{% endif %}
{% ifversion fpt or ghes > 3.2 or ghec %}
![Beispiel einer Profilseite einer Organisation](/assets/images/help/organizations/org_profile_with_overview.png)
{% else %}
![Beispiel einer Profilseite einer Organisation](/assets/images/help/profile/org_profile.png)
{% endif %}
## Weiterführende Informationen
- „[Informationen zu Organisationen](/organizations/collaborating-with-groups-in-organizations/about-organizations)“

Some files were not shown because too many files have changed in this diff Show More