... | ... | @@ -153,6 +153,15 @@ Adicionar um commit |
git commit -m "uma mensagem sobre as alterações feitas" | ||
``` | ||
Adicionar um commit com mais de um autor | ||
```shell | ||
git commit -m "Refactor usability tests. | ||
> | ||
> | ||
Co-authored-by: name <[email protected]> | ||
Co-authored-by: another-name <[email protected]>" | ||
``` | ||
Adicionar as alterações a branch remota | ||
```shell | ||
git push [nome da branch remota] | ||
... | ... |