1
0
mirror of https://github.com/kylelobo/The-Documentation-Compendium.git synced 2025-09-03 01:52:42 +02:00
Files
the-documentation-compendium/it/CONTRIBUTING.md
2020-09-07 13:28:45 +02:00

1.5 KiB

Guida alla Contribuzione

  • Contribuire a The Documentation Compendium è relativamente facile. Questo documento ti illustra come iniziare

In Generale

Sottomettere Cambiamenti

  • Forka la repo
  • Crea una nuova branch e dalle un nome inerente a quello che vuoi fare:
    • Esempio:
      $ git checkout -b NOME_BRANCH
      
      Se riscontri un errore, potresti aver bisogno di fetchare fooBar con
      $ git remote update && git fetch
      
    • Usa una branch per fix / feature
  • Committa le tue modifiche
    • Per favore fornisci un messaggio git che spiega cosa hai fatto
    • Per favore assicurati che i tuoi commit seguano le convenzioni
    • Committa sulla repo forkata
    • Esempio:
      $ git commit -am 'Aggiunto fooBar'
      
  • Pusha sulla branch
    • Esempio:
      $ git push origin NOME_BRANCH
      
  • Fai una pull request
    • Assicurati di mandare la PR alla branch fooBar
    • Travis CI is watching you!

Se segui queste istruzioni, la tua PR arriverà tranquillamente nella repo principale!