Skip to content

Commit b5300c8

Browse files
author
Loïc KARTONO
committed
Merge pull request tiimgreen#2 from seblemaguer/french
Progress in the french version
2 parents 392d56c + 39db4c8 commit b5300c8

File tree

6 files changed

+1775
-454
lines changed

6 files changed

+1775
-454
lines changed

README.fr.md

Lines changed: 47 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Aide mémoire GitHub
1+
# Aide mémoire GitHub
22
Une collection d'astuces connues et moins connues pour Git et Github. Cette feuille aide mémoire a été inspirée par le discours sur [Git and GitHub Secrets](http://www.confreaks.com/videos/1229-aloharuby2012-git-and-github-secrets) de [Zach Holman](https://github.com/holman) à la Aloha Ruby Conference 2012 ([diapositives](https://speakerdeck.com/holman/git-and-github-secrets)) et son discours [More Git and GitHub Secrets](https://vimeo.com/72955426) au WDCNZ 2013 ([diapositives](https://speakerdeck.com/holman/more-git-and-github-secrets)).
33

44
*Lien court: [`http://git.io/sheet`](http://git.io/sheet)*
@@ -29,7 +29,7 @@ Une collection d'astuces connues et moins connues pour Git et Github. Cette feui
2929
- [L'intégration d'images dans le Wiki GitHub](#embedding-images-in-github-wiki)
3030
- [Citation rapide](#quick-quoting)
3131
- [Coller une image du Presse-papier dans les commentaires](#pasting-clipboard-image-to-comments)
32-
- [Quick Licensing](#quick-licensing)
32+
- [Intégration rapide d'une licence](#quick-licensing)
3333
- [Listes de tâches](#task-lists)
3434
- [Listes de tâches dans les documents Markdown](#task-lists-in-markdown-documents)
3535
- [Liens relatifs](#relative-links)
@@ -186,8 +186,8 @@ Cela signifie que vous pouvez également modifier et pousser des mises à jour v
186186

187187
```bash
188188
$ git commit
189-
$ Username for 'https://gist.github.com':
190-
$ Password for 'https://[email protected]':
189+
$ Username for 'https://gist.github.com':
190+
$ Password for 'https://[email protected]':
191191
```
192192

193193
[*En savoir plus sur la création de gists.*](https://help.github.com/articles/creating-gists)
@@ -258,35 +258,36 @@ Pour lier vers un bogue d'un autre dépôt, `user_name/repo_name#ISSUE_NUMBER` e
258258
![Cross-Link Issues](https://camo.githubusercontent.com/447e39ab8d96b553cadc8d31799100190df230a8/68747470733a2f2f6769746875622d696d616765732e73332e616d617a6f6e6177732e636f6d2f626c6f672f323031312f736563726574732f7265666572656e6365732e706e67)
259259

260260
### Verrouillage de conversation
261-
Pull Requests and Issues can now be locked by owners or collaborators of the repo.
261+
Les Pull Requests et les issues peuvent maintenant être verrouillés par les propriétaires et les collaborateurs du dépot.
262262

263263
![Lock conversation](https://cloud.githubusercontent.com/assets/2723/3221693/bf54dd44-f00d-11e3-8eb6-bb51e825bc2c.png)
264264

265-
This means that users who are not collaborators on the proejct will no longer be able to comment.
265+
Cela implique que les personnes qui ne sont pas collaborateurs ne pourront plus ajouter de commentaire.
266266

267267
![Comments locked](https://cloud.githubusercontent.com/assets/2723/3221775/d6e513b0-f00e-11e3-9721-2131cb37c906.png)
268268

269-
[*Read more about locking conversations.*](https://github.com/blog/1847-locking-conversations)
269+
[*Plus d'information sur le verrouillage (En anglais)*](https://github.com/blog/1847-locking-conversations)
270270

271271

272-
### CI Status on Pull Requests
273-
If set up correctly, every time you receive a Pull Request, [Travis CI](https://travis-ci.org/) will build that Pull Request just like it would every time you make a new commit. Read more about how to [get started with Travis CI](http://docs.travis-ci.com/user/getting-started/).
272+
### Statut des CI dans les Pull Requests
273+
Si la configuration de [Travis CI](https://travis-ci.org/) a été effectuée correctement, à chaque
274+
pull request effectué, [Travis CI](https://travis-ci.org/) tentera de générer le projet comme s'il s'agit de
275+
l'un de vos propres commits. Plus d'information sur cette page : [get started with Travis CI](http://docs.travis-ci.com/user/getting-started/).
274276

275277
[![Travis CI status](https://cloud.githubusercontent.com/assets/1687642/2700187/3a88838c-c410-11e3-9a46-e65e2a0458cd.png)](https://github.com/octokit/octokit.rb/pull/452)
276278

277-
[*Read more about the commit status API.*](https://github.com/blog/1227-commit-status-api)
278-
279-
### Syntax Highlighting in Markdown Files
280-
For example, to syntax highlight Ruby code in your Markdown files write:
279+
[*Plus d'information sur l'API associé au statut du commit (En anglais).*](https://github.com/blog/1227-commit-status-api)
281280

281+
### Coloration syntaxique dans les fichiers Markdown
282+
Par exemple, pour effectuer une coloration syntaxique pour un code ruby, écrivez dans le fichier markdown ceci :
282283
```ruby
283284
require 'tabbit'
284285
table = Tabbit.new('Name', 'Email')
285286
table.add_row('Tim Green', '[email protected]')
286287
puts table.to_s
287288
```
288289

289-
This will produce:
290+
Ceci va produire :
290291

291292
```ruby
292293
require 'tabbit'
@@ -295,16 +296,18 @@ table.add_row('Tim Green', '[email protected]')
295296
puts table.to_s
296297
```
297298

298-
GitHub uses [Linguist](https://github.com/github/linguist) to perform language detection and syntax highlighting. You can find out which keywords are valid by perusing the [languages YAML file](https://github.com/github/linguist/blob/master/lib/linguist/languages.yml).
299+
GitHub se basent sur [Linguist](https://github.com/github/linguist) pour déterminer le language
300+
utilisé et effectuer la coloration syntaxique. Vous pouvez savoir quels sont les identifiants de
301+
langages valides dans le [fichier de languages YAML](https://github.com/github/linguist/blob/master/lib/linguist/languages.yml).
299302

300-
[*Read more about GitHub Flavored Markdown.*](https://help.github.com/articles/github-flavored-markdown)
303+
[*Plus d'informations sur le format Markdown GitHub (GitHub Flavored Markdown) (En anglais).*](https://help.github.com/articles/github-flavored-markdown)
301304

302305
### Emojis
303-
Emojis can be added to Pull Requests, Issues, commit messages, etc. using `:name_of_emoji:`
306+
Les Emojis peuvent être insérés dans les Pull Requests, les Issues, les messages de commit , etc. en utilisant la syntaxe `:name_of_emoji:`
304307

305-
The full list of supported Emojis on GitHub can be found at [emoji-cheat-sheet.com](http://www.emoji-cheat-sheet.com/) or [scotch-io/All-Github-Emoji-Icons](https://github.com/scotch-io/All-Github-Emoji-Icons).
308+
La liste complète des Emojis proposés sur GitHub est disponible sur [emoji-cheat-sheet.com](http://www.emoji-cheat-sheet.com/) ou [scotch-io/All-Github-Emoji-Icons](https://github.com/scotch-io/All-Github-Emoji-Icons).
306309

307-
The top 5 used Ejmojis on GitHub are:
310+
Les top 5 des Emojis utilisés sur GitHub sont :
308311

309312
1. :shipit: - `:shipit:`
310313
2. :sparkles: - `:sparkles:`
@@ -313,62 +316,62 @@ The top 5 used Ejmojis on GitHub are:
313316
5. :clap: - `:clap:`
314317

315318
### Images/GIFs
316-
Images and GIFs can be added to comments, READMEs etc.:
319+
Les Images et GIFs peuvent être intégrés dans les commentaires, README, etc. :
317320

318321
```
319322
![Alt Text](http://www.sheawong.com/wp-content/uploads/2013/08/keephatin.gif)
320323
```
321324

322-
Raw images from the repo can be used by calling them directly.:
325+
Les images présentes dans un dépôt peuvent être utilisées directement :
323326

324327
```
325328
![Alt Text](https://github.com/(user)/(repo)/raw/master/path/to/image.gif)
326329
```
327330

328331
![Peter don't care](http://www.sheawong.com/wp-content/uploads/2013/08/keephatin.gif)
329332

330-
All images are cached on GitHub, so if your host goes down, the image will remain available.
333+
L'ensemble des images sont sauvegardés par GitHub. Ainsi, même si l'accès à l'image originale est perdu, le rendu n'est pas affecté.
331334

332-
#### Embedding Images in GitHub Wiki
333-
There are multiple ways of embedding images in Wiki pages. There's the standard Markdown syntax (shown above). But there's also a syntax that allows things like specifying the height or width of the image:
335+
#### L'intégration d'images dans le Wiki GitHub
336+
Il ya plusieurs moyens d'intégrés des images dans les pages Wiki. Tout d'abord, il y a la syntaxe standard Markdown (illustré ci-dessus). Une syntaxe plus évoluée est également présente. Elle permet d'imposer la longueur et la largeur de l'image :
334337

335338
```markdown
336339
[[ http://www.sheawong.com/wp-content/uploads/2013/08/keephatin.gif | height = 100px ]]
337340
```
338341

339-
Which produces:
342+
qui produit
340343

341344
![Just a screenshot](http://i.imgur.com/J5bMf7S.png)
342345

343-
### Quick Quoting
344-
When on a comment thread and you want to quote something someone previously said, highlight the text and press `r`, this will copy it into your text box in the block-quote format.
346+
### Citation rapide
347+
Si vous souhaitez citer quelquechose écrit par quelqu'un précédemment, lorsque vous écrivez un commentaire, surlignez le texte et pressez la touche `r`. Ceci aura pour effet de copier le texte et de le formatter pour effectuer la citation.
345348

346349
![Quick Quote](https://f.cloud.github.com/assets/296432/124483/b0fa6204-6ef0-11e2-83c3-256c37fa7abc.gif)
347350

348-
[*Read more about quick quoting.*](https://github.com/blog/1399-quick-quotes)
351+
[*Plus d'informations sur la citation rapide (En anglais).*](https://github.com/blog/1399-quick-quotes)
349352

350-
### Pasting Clipboard Image to Comments
351-
After taking a screenshot and adding it to the clipboard (mac: `cmd-ctrl-shift-4`), you can simply paste (`cmd-v / ctrl-v`) the image into the comment section and it will be auto-uploaded to github.
353+
### Coller une image du Presse-papier dans les commentaires
354+
Après avoir effectué une capture d'écran et l'avoir ajouté au presse-papier (mac: `cmd-ctrl-shift-4`), il vous suffit de coller (`cmd-v / ctrl-v`) l'image dans le commentaire. L'image sera alors automatique mise en ligne sur GitHub.
352355

353356
![Pasting Clipboard Image to Comments](https://cloud.githubusercontent.com/assets/39191/5794265/39c9b65a-9f1b-11e4-9bc7-04e41f59ea5f.png)
354357

355-
[*Read more about issue attachments.*](https://help.github.com/articles/issue-attachments)
358+
[*Plus d'informations sur les pièces jointes des issues (En anglais).*](https://help.github.com/articles/issue-attachments)
356359

357-
### Quick Licensing
358-
When creating a repository, GitHub gives you the option of adding in a pre-made license:
360+
### Intégration rapide d'une licence
361+
Lors de la création d'un dépôt, GitHub vous permet d'ajouter un fichier de licence prédéfini :
359362

360363
![License](http://i.imgur.com/Chqj4Fg.png)
361364

362-
You can also add them to existing repositories by creating a new file through the web interface. When the name `LICENSE` is typed in you will get an option to use a template:
365+
Vous pouvez également les ajouter à un dépôt existant en créant un nouveau fichier via l'interface web. Si le nom du fichier est `LICENSE` vous aurez alors la possibilité d'utiliser un fichier de licence prédéfini :
363366

364367
![License](http://i.imgur.com/fTjQict.png)
365368

366-
Also works for `.gitignore`.
369+
Ceci fonctionne également pour `.gitignore`.
367370

368-
[*Read more about open source licensing.*](https://help.github.com/articles/open-source-licensing)
371+
[*Plus d'information sur les licences open source (En anglais).*](https://help.github.com/articles/open-source-licensing)
369372

370-
### Task Lists
371-
In Issues and Pull requests check boxes can be added with the following syntax (notice the space):
373+
### Liste de tâches
374+
Dans les bogues et les pull requests, des boîtes à cocher peuvent être ajoutées en utilisant la syntaxe suivante (remarquez l'espace) :
372375

373376
```
374377
- [ ] Be awesome
@@ -381,7 +384,7 @@ In Issues and Pull requests check boxes can be added with the following syntax (
381384

382385
![Task List](http://i.imgur.com/jJBXhsY.png)
383386

384-
When they are clicked, they will be updated in the pure Markdown:
387+
Lorsqu'un utilisateur clique sur une tâche, elle est mise à jour dans le format Markdown :
385388

386389
```
387390
- [x] Be awesome
@@ -392,10 +395,10 @@ When they are clicked, they will be updated in the pure Markdown:
392395
- [ ] Sleep
393396
```
394397

395-
[*Read more about task lists.*](https://help.github.com/articles/writing-on-github#task-lists)
398+
[*Plus d'informations sur les listes de tâches (En anglais).*](https://help.github.com/articles/writing-on-github#task-lists)
396399

397-
#### Task Lists in Markdown Documents
398-
In full Markdown documents **read-only** checklists can now be added using the following syntax:
400+
#### Listes de tâches dans les documents Markdown
401+
Dans les documents Markdown, il est maintenant possible d'ajouter des listes de boîtes à cocher en **lecture seule** en utilisant la syntaxe suivante :
399402

400403
```
401404
- [ ] Mercury
@@ -415,7 +418,7 @@ In full Markdown documents **read-only** checklists can now be added using the f
415418
- [ ] Deimos
416419
- [ ] Phobos
417420

418-
[*Read more about task lists in markdown documents.*](https://github.com/blog/1825-task-lists-in-all-markdown-documents)
421+
[*Plus d'informations sur les listes de tâches dans les documents Markdown (En anglais)*](https://github.com/blog/1825-task-lists-in-all-markdown-documents)
419422

420423
### Relative Links
421424
Relative links are recommended in your Markdown files when linking to internal content.
@@ -451,7 +454,7 @@ GitHub supports rendering tabular data in the form of `.csv` (comma-separated) a
451454
[*Read more about rendering tabular data.*](https://github.com/blog/1601-see-your-csvs)
452455

453456
###Revert a Pull Request
454-
After a pull request is merged, you may find it does not help anything or it was a bad decision to merge the pull request.
457+
After a pull request is merged, you may find it does not help anything or it was a bad decision to merge the pull request.
455458

456459
You can revert it by clicking the **Revert** button on the right side of a commit in the pull request page to create a pull request with reverted changes to this specific pull request.
457460

0 commit comments

Comments
 (0)