+# First Contributions
-Aller Anfang ist schwer. Gerade dann, wenn wir gemeinsam an etwas arbeiten, möchte niemand etwas falsch machen. Aber Open Source dreht sich um Kooperation und lebt durch die Beiträge vieler Freiwilliger. Deshalb haben wir es uns zur Aufgabe gemacht, neuen Mitgliedern in der Open-Source-Gemeinde ihre ersten Schritte so einfach wie möglich zu machen.
+Dieses Projekt zielt darauf ab, Anfängern den Einstieg zu erleichtern und sie bei ihrem ersten Beitrag zu unterstützen. Wenn du deinen ersten Beitrag leisten möchten, befolge die folgenden Schritte.
-Natürlich helfen die vorhandenen Artikel und Videoanleitungen. Aber was kann besser sein, als es einfach einmal auszuprobieren – mit dem Wissen, dass man nichts kaputt machen kann? Dieses Projekt will Anfängern zeigen, wie sie möglichst einfach ihren ersten Beitrag leisten. Bedenke: Je entspannter du bist, desto besser lernst du. Wenn du deinen ersten Beitrag leisten möchtest, folge diesen einfachen Schritten. Wir versprechen dir, es wird Spaß machen.
+_Wenn du nicht weißt wie man das Terminal/CMD bedient, [hier sind tutorials für GUI Tools.](#tutorials-using-other-tools)_
-Wenn du Git noch nicht installiert hast, [installiere es](https://help.github.com/articles/set-up-git/)
+
-## Repository forken
+#### Wenn du Git nicht auf deinem System installiert hast, [installiere es](https://docs.github.com/en/get-started/quickstart/set-up-git).
-Forke das Repository durch das Anklicken der Schaltfläche "Fork". Dadurch erhältst du deine eigene Version des Projektes in deinem Profil.
+## Forke dieses Repository
-## Repository klonen
+Forke dieses Repository indem du auf den Fork Button oben auf dieser Seite klickst.
+Dies wird eine Kopie dieses Repository's in deinem Account erstellen.
-
+## Klone das Repository
-Klone das Repository auf deinen Computer. Klicke auf die Schaltfläche "Clone or download" und anschließend auf das "copy to clipboard"-Symbol.
+
-Öffne eine Kommandozeile und gib den folgenden git-Befehl ein:
+Klone jetzt das geforkte Repository auf deinen Computer. Gehe zu dienem Github Account, öffne das geforkte Repository, klicke auf den Code Button, dann auf den HTTPS Tab und dann klicke das _copy url to clipboard_ icon.
-```
-git clone "Deine kopierte URL"
+Open a terminal and run the following git command:
+
+```bash
+git clone "url you just copied"
```
-Statt 'Deine kopierte URL' (ohne Anführungszeichen) füge die Repository-URL aus dem vorherigen Schritt ein.
+where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.
-
+
-Beispiel:
+For example:
-```
-git clone https://github.com/dein-Name/first-contributions.git
+```bash
+git clone git@github.com:this-is-you/first-contributions.git
```
-An der Stelle 'dein-Name' muss dein GitHub-Nutzername stehen. Mit diesem Befehl kopierst du den Inhalt deines first-contributions-Repository von GitHub auf deinen Computer.
+where `this-is-you` is your GitHub username. Here you're copying the contents of the first-contributions repository on GitHub to your computer.
-## Erstelle einen Branch
+## Create a branch
-Wechsle zum Repository-Verzeichnis auf deinem Computer (falls du es nicht schon getan hast).
+Change to the repository directory on your computer (if you are not already there):
-```
+```bash
cd first-contributions
```
-Erstelle nun einen Branch mit dem Befehl `git checkout`:
+Now create a branch using the `git switch` command:
-```
-git checkout -b
+
+If you go to the project directory and execute the command `git status`, you'll see there are changes.
+
+Add those changes to the branch you just created using the `git add` command:
+
+```bash
git add Contributors.md
```
-Nun committest du deine Änderungen mit `git commit`:
+Now commit those changes using the `git commit` command:
-```
-git commit -m "Add remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. + remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. + fatal: Authentication failed for 'https://github.com/+ Go to [GitHub's tutorial](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) on generating and configuring an SSH key to your account. -/first-contributions.git/'
+ Also, you might want to run 'git remote -v' to check your remote address.
+
+ If it looks anything like this:
+ origin https://github.com/your-username/your_repo.git (fetch) + origin https://github.com/your-username/your_repo.git (push)+ + change it using this command: + ```bash + git remote set-url origin git@github.com:your-username/your_repo.git + ``` + Otherwise you'll still get prompted for username and password and get authentication error. +
+If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
-Roshan Jossey wird nun deine Änderungen in den Master-Branch dieses Projekts mergen. Du erhältst eine E-Mail, sobald dies geschehen ist.
+
-## Wie geht es weiter?
+Now submit the pull request.
-Glückwunsch! Du hast soeben den Standard-Workflow _Fork -> Clone -> Edit -> Pull Request_ beendet, der dir als Mitwirkender häufig begegnen wird.
+
-Feiere deinen Beitrag zum Projekt und teile ihn mit deinen Freunden und Followern über unsere [Web-App](https://firstcontributions.github.io/#social-share).
+Soon I'll be merging all your changes into the main branch of this project. You will get a notification email once the changes have been merged.
-Wenn Du noch mehr üben möchtest, schau Dir das [Code-Contributions Repository](https://github.com/roshanjossey/code-contributions) an.
-Falls du jetzt zu anderen Projekten beitragen möchtest, dann haben wir für dich eine Liste von einfachen, ersten Issues zusammengestellt, an denen du arbeiten kannst. Diese Projekt-Liste findest du [in unserer Web-App](https://firstcontributions.github.io/#project-list).
+## Where to go from here?
-## Tutorials mit anderen Tools
+Congrats! You just completed the standard _fork -> clone -> edit -> pull request_ workflow that you'll often encounter as a contributor!
-| This project is supported by:
+
+
+
+
+