Skip to content

Commit

Permalink
Merge branch 'master' into fix-typos-in-german-translation
Browse files Browse the repository at this point in the history
  • Loading branch information
Roshanjossey authored Feb 5, 2019
2 parents ceed3b2 + a78bf6a commit ebb5146
Show file tree
Hide file tree
Showing 31 changed files with 3,386 additions and 450 deletions.
454 changes: 414 additions & 40 deletions .github/CONTRIBUTING.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ include:
* Focusing on what is best for the community.
* Showing empathy towards other community members.

Examples of unacceptable behavior by participants include:
Examples of unacceptable behaviour by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or advances.
* Trolling, insulting/derogatory comments, and personal or political attacks.
Expand All @@ -31,13 +31,13 @@ Examples of unacceptable behavior by participants include:
## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.
behaviour and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behaviour.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
permanently any contributor for other behaviours that they deem inappropriate,
threatening, offensive, or harmful.

## Scope
Expand Down
1,813 changes: 1,486 additions & 327 deletions Contributors.md

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Reading articles & watching tutorials can help, but what's better than actually

#### *Read this in [other languages](translations/Translations.md).*

[🇮🇳](translations/README.hi.md)
[🇮🇳](translations/Translations.md)
[🇲🇲](translations/README.mm_unicode.md)
[🇮🇩](translations/README.id.md)
[🇫🇷](translations/README.fr.md)
Expand All @@ -23,6 +23,7 @@ Reading articles & watching tutorials can help, but what's better than actually
[🇳🇱](translations/README.nl.md)
[🇱🇹](translations/README.lt.md)
[🇷🇺](translations/README.ru.md)
[🇧🇬](translations/README.bg.md)
[:slovakia:](translations/README.slk.md)
[🇯🇵](translations/README.ja.md)
[🇻🇳](translations/README.vn.md)
Expand All @@ -49,12 +50,17 @@ Reading articles & watching tutorials can help, but what's better than actually
[🇲🇩 🇷🇴](translations/README.ro.md)
[🇹🇷](translations/README.tr.md)
[🇸🇪](translations/README.se.md)
[🇲🇾](translations/README.my.md)
[:slovenia:](translations/README.sl.md)
[🇮🇱](translations/README.hb.md)
[🇨🇿](translations/README.cs.md)
[<img src="assets/pirate.png" width="22">](translations/README.en-pirate.md)
[🇲🇽](translations/README.mx.md)
[vn](translations/README.vn.md)
[🇵🇭](translations/README.tl.md)
[🇿🇦](translations/README.zul.md)
[🇿🇦](translations/README.afk.md)
[🇰🇪](translations/README.kws.md)
[🇳🇬](translations/README.igb.md)


<img align="right" width="300" src="assets/fork.png" alt="fork this repository" />
Expand Down
11 changes: 11 additions & 0 deletions additional-material/git_workflow_scenarios/why-using-branches.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# WHY USING BRANCHES DURING CONTRIBUTING

Branches are simply pointers to a commit.

When you branch out, git is essentially making a new state of your current code, upon which you can work, without affecting the important main state of the code (which is in master branch).

When your happy with your experiments, and want to merge you experiments in main code, you run git merge
<branch name> master.
This will tell git, to add in all changes from your experiment branch into master.

This way, while working in a open source project with a number of contributers, it becomes easy to merge the best suited code without altering the main code or master branch.
2 changes: 1 addition & 1 deletion github-desktop-old-version-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

It's hard. It's always hard the first time you do something. Especially when you are collaborating, making mistakes isn't a comfortable thing. But open source is all about collaboration & working together. We wanted to simplify the way new open-source contributors learn & contribute for the first time.

Reading articles & watching tutorials can help, but what comes better than actually doing the stuff without messing up anything. This project aims at providing guidance & simplifying the way rookies make their first contribution. Remember the more relaxed you are the better you learn. If you are looking for making your first contribution just follow the simple steps below. We promise you, it will be fun.
Reading articles & watching tutorials can help, but what comes better than actually doing the stuff without messing up anything. This project aims at providing guidance & simplifying the way rookies make their first contribution. Remember the more relaxed you are, the better you learn. If you are looking for making your first contribution just follow the simple steps below. We promise you, it will be fun.

<img align="right" width="300" src="assets/fork.png" alt="fork this repository" />

Expand Down
8 changes: 4 additions & 4 deletions github-desktop-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ To clone the repo, click on "Clone or Download" and then click on "Open in Deskt

<img style="left;" src="assets/dt1-clonetodesktop.png" alt="clone this repository" />

A pop up window will open. Click on "Open GitHubDesktop.exe"
A pop up window will open. Click on "Open GitHubDesktop.exe".

<img style="left;" src="assets/dt1-open-githubdesktop.png" alt="clone this repository" />

Expand Down Expand Up @@ -70,11 +70,11 @@ You can see that there are changes to Contributors.md and they have been added t

Now commit those changes:

Write the message "Add `<your-name>` to Contributors list" in the *summary* field
Write the message "Add `<your-name>` to Contributors list" in the *summary* field.

Replace `<your-name>` with your name
Replace `<your-name>` with your name.

Click on the button that says `Commit to add-your-name`
Click on the button that says `Commit to add-your-name`.

<img style="left;" src="assets/dt1-commit1.png" alt="commit your changes" />

Expand Down
2 changes: 1 addition & 1 deletion github-windows-vs-code-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

It's hard. It's always hard the first time you do something. Especially when you are collaborating, making mistakes isn't a comfortable thing. But open source is all about collaboration & working together. We wanted to simplify the way new open-source contributors learn & contribute for the first time.

Reading articles & watching tutorials can help, but what comes better than actually doing the stuff without messing up anything. This project aims at providing guidance & simplifying the way rookies make their first contribution. Remember the more relaxed you are the better you learn. If you are looking for making your first contribution just follow the simple steps below. We promise you, it will be fun.
Reading articles & watching tutorials can help, but what comes better than actually doing the stuff without messing up anything. This project aims at providing guidance & simplifying the way rookies make their first contribution. Remember the more relaxed you are, the better you learn. If you are looking for making your first contribution just follow the simple steps below. We promise you, it will be fun.

If you don't have Visual Studio Code on your machine, [install it](https://code.visualstudio.com/download).

Expand Down
2 changes: 1 addition & 1 deletion gitkraken-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

It's hard. It's always hard, when you do something for the first time. Especially when you are collaborating, making mistakes isn't a comfortable thing. But open source is all about collaboration & working together. We wanted to simplify the way new open-source contributors learn & contribute for the first time.

Reading articles & watching tutorials can help, but what comes better than actually doing the stuff without messing up anything. This project aims at providing guidance & simplifying the way rookies make their first contribution. Remember the more relaxed you are the better you learn. If you are looking for making your first contribution just follow the simple steps below. We promise you, it will be fun.
Reading articles & watching tutorials can help, but what comes better than actually doing the stuff without messing up anything. This project aims at providing guidance & simplifying the way rookies make their first contribution. Remember the more relaxed you are, the better you learn. If you are looking for making your first contribution just follow the simple steps below. We promise you, it will be fun.


## Git Kraken
Expand Down
1 change: 0 additions & 1 deletion start-here-guidelines
Submodule start-here-guidelines deleted from 333c63
185 changes: 185 additions & 0 deletions translations/README.afk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/)
[<img align="right" width="150" src="../assets/join-slack-team.png">](https://join.slack.com/t/firstcontributors/shared_invite/enQtMzE1MTYwNzI3ODQ0LTZiMDA2OGI2NTYyNjM1MTFiNTc4YTRhZTg4OWZjMzA0ZWZmY2UxYzVkMzI1ZmVmOWI4ODdkZWQwNTM2NDVmNjY)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
[![Open Source Helpers](https://www.codetriage.com/roshanjossey/first-contributions/badges/users.svg)](https://www.codetriage.com/roshanjossey/first-contributions)


# Eerste Bydraes

Dit is moeilik. Dit is altyd moeilik om die eerste keer iets te doen. Veral wanneer jy saamwerk, maak foute nie 'n gemaklike ding nie. Ons wou die manier waarop nuwe open source bydraers vir die eerste keer leer en bydra, vereenvoudig.

Lees artikels en kyk tutoriale kan help, maar wat is beter as om die goed in die praktyk te doen? Hierdie projek het ten doel om leiding te gee en die manier waarop beginners hul eerste bydrae maak, te vereenvoudig. As jy jou eerste bydrae wil maak, volg die onderstaande stappe.

#### *As jy nie gemaklik is met die opdraglyn nie, [is daar tutoriale wat GUI-instrumente gebruik.]( #tutorials-using-other-tools )*

#### *Lees dit in [ander tale .](translations/Translations.md).*

[🇮🇳](translations/README.hi.md)
[🇲🇲](translations/README.mm_unicode.md)
[🇮🇩](translations/README.id.md)
[🇫🇷](translations/README.fr.md)
[🇪🇸](translations/README.es.md)
[<img src="../assets/catalan1.png" width="22">](translations/README.ca.md)
[🇳🇱](translations/README.nl.md)
[🇱🇹](translations/README.lt.md)
[🇷🇺](translations/README.ru.md)
[:slovakia:](translations/README.slk.md)
[🇯🇵](translations/README.ja.md)
[🇻🇳](translations/README.vn.md)
[🇵🇱](translations/README.pl.md)
[🇮🇷](translations/README.fa.md)
[🇮🇷](translations/README.fa.en.md)
[🇰🇷 🇰🇵](translations/README.ko.md)
[🇩🇪](translations/README.de.md)
[🇩🇰](translations/README.da.md)
[🇨🇳](translations/README.chs.md)
[🇹🇼](translations/README.cht.md)
[🇬🇷](translations/README.gr.md)
[🇪🇬](translations/README.eg.md)
[🇸🇦](translations/README.ar.md)
[🇺🇦](translations/README.ua.md)
[🇧🇷](translations/README.pt_br.md)
[🇵🇹](translations/README.pt-pt.md)
[🇮🇹](translations/README.it.md)
[🇹🇭](translations/README.th.md)
[🏴](translations/README.gl.md)
[🇵🇰](translations/README.ur.md)
[:bangladesh:](translations/README.bn.md)
[🇲🇩 🇷🇴](translations/README.ro.md)
[🇹🇷](translations/README.tr.md)
[🇸🇪](translations/README.se.md)
[:slovenia:](translations/README.sl.md)
[🇮🇱](translations/README.hb.md)
[🇨🇿](translations/README.cs.md)
[<img src="../assets/pirate.png" width="22">](translations/README.en-pirate.md)
[🇲🇽](translations/README.mx.md)
[🇿🇦](translations/README.zul.md)
[🇿🇦](translations/README.afk.md)
[🇰🇪](translations/README.kws.md)
[🇳🇬](translations/README.igb.md)



<img align="right" width="300" src="../assets/fork.png" alt="fork this repository" />

As jy nie git op jou masjien het nie, [installeer dit]( https://help.github.com/articles/set-up-git/).

## Vork hierdie bewaarplek

Vork hierdie repo deur op die vurk knoppie bo-aan hierdie bladsy te klik. Dit sal 'n kopie van hierdie repository in u rekening skep.

## Klone die repository

<img align="right" width="300" src="../assets/clone.png" alt="clone this repository" />

Klone nou die vurk repo aan jou masjien. Gaan na jou GitHub-rekening, maak die vurk repo oop, klik op die kloonknop en klik dan op die kopie na die knipbord- ikoon.

Open 'n terminaal en voer die volgende git opdrag uit:

```
git clone "url you just copied"
```

waar "url jy net gekopieer" het (sonder die aanhalingstekens) is die url na hierdie repository (jou vurk van hierdie projek). Sien die vorige stappe om die url te verkry.

<img align="right" width="300" src="../assets/copy-to-clipboard.png" alt="copy URL to clipboard" />

Byvoorbeeld:

```
git clone https://github.com/this-is-you/first-contributions.git
```

waar `this-is-youis` jou GitHub gebruikersnaam Hier kopieer jy die inhoud van die eerste bydrae repository in GitHub na jou rekenaar.

## Skep 'n tak

Verander na die repository gids op jou rekenaar (as jy nie reeds daar is nie):

```
cd first-contributions
```

Skep nou 'n tak met die git `checkout` opdrag:

```
git checkout -b <add-your-new-branch-name>
```

Byvoorbeeld:

```
git checkout -b add-alonzo-church
```

(Die naam van die tak hoef nie die woord by te voeg nie, maar dit is 'n redelike ding om in te sluit omdat die doel van hierdie tak is om jou naam by 'n lys te voeg.)

## Maak die nodige veranderinge en verbind die veranderinge

Nou oop `Contributors.md` lêer in 'n teksredigeerder, voeg jou naam daarby. Moet dit nie aan die begin of einde van die lêer byvoeg nie. Sit dit oral tussenin. Stoor nou die lêer.

<img align="right" width="450" src="../assets/git-status.png" alt="git status" />

As u na die projekgids gaan en die opdrag uitvoer `git status`, sal u sien dat daar veranderinge is.


Voeg die veranderinge by die tak wat jy net geskep het deur die `git add` opdrag te gebruik:

```
git add Contributors.md
```

Doen nou die veranderinge deur die `git commit` opdrag te gebruik:

```
git commit -m "Add <your-name> to Contributors list"
```

vervang `<your-name>` met jou naam.

## Druk veranderinge na GitHub

Druk jou veranderinge deur die opdrag te gebruik `git push`:

```
git push origin <add-your-branch-name>
```

vervang `<add-your-branch-name>` met die naam van die tak wat jy vroeër geskep het.

## Dien jou veranderinge in vir hersiening

As jy na jou repository op GitHub gaan, sal jy 'n `Compare & pull` requestknoppie sien. Klik op daardie knoppie.

<img style="float: right;" src="../assets/compare-and-pull.png" alt="create a pull request" />

Dien nou die trekversoek in.

<img style="float: right;" src="../assets/submit-pull-request.png" alt="submit pull request" />

Binnekort sal ek al jou veranderinge in die meestertak van hierdie projek saamsmelt. U sal 'n kennisgewing-e-pos ontvang sodra die veranderinge saamgesmelt is.

## Waarheen gaan jy vandaan?

Geluk! Jy het net die standaardvurk voltooi -> klone -> wysig -> PR- werkvloei wat jy dikwels as 'n bydraer sal ervaar!

Vier jou bydrae en deel dit met jou vriende en volgelinge deur na die [webprogram te](https://roshanjossey.github.io/first-contributions/#social-share) gaan .

U kan by ons span aansluit indien u enige hulp nodig het of enige vrae het. [Sluit aan by 'n slapende span](https://join.slack.com/t/firstcontributors/shared_invite/enQtMzE1MTYwNzI3ODQ0LTZiMDA2OGI2NTYyNjM1MTFiNTc4YTRhZTg4OWZjMzA0ZWZmY2UxYzVkMzI1ZmVmOWI4ODdkZWQwNTM2NDVmNjY).

Kom ons begin met die bydrae tot ander projekte. Ons het 'n lys van projekte saamgestel met maklike probleme waarmee u kan begin. Kyk na [die lys van projekte in die web app](https://roshanjossey.github.io/first-contributions/#project-list).

### [Bykomende materiaal](additional-material/git_workflow_scenarios/additional-material.md)

|<a href="github-desktop-tutorial.md"><img alt="GitHub Desktop" src="https://desktop.github.com/images/desktop-icon.svg" width="100"></a>|<a href="github-windows-vs2017-tutorial.md"><img alt="Visual Studio 2017" src="https://www.visualstudio.com/wp-content/uploads/2017/11/microsoft-visual-studio.svg" width="100"></a>|<a href="gitkraken-tutorial.md"><img alt="GitKraken" src="../assets/gk-icon.png" width="100"></a>|<a href="github-windows-vs-code-tutorial.md"><img alt="VS Code" src="https://upload.wikimedia.org/wikipedia/commons/2/2d/Visual_Studio_Code_1.18_icon.svg" width=100></a>|
|---|---|---|---|
|[GitHub Desktop](github-desktop-tutorial.md)|[Visuele Studio 2017](github-windows-vs2017-tutorial.md)|[GitKraken](gitkraken-tutorial.md)|[Visuele Studio Kode](github-windows-vs-code-tutorial.md)|

## Self-bevordering

As jy van hierdie projek hou, sterf dit op [GitHub](https://github.com/Roshanjossey/first-contributions).
As jy veral liefdadigheid voel, volg [Roshan](https://roshanjossey.github.io/) op
[Twitter](https://twitter.com/sudo__bangbang) en
[GitHub](https://github.com/roshanjossey).

<a href="http://saasgrids.com"> <img alt="https://app.saasgrids.com" src="../assets/saasgrids-banner.png" width="500"></a>
Loading

0 comments on commit ebb5146

Please sign in to comment.