Aprovecha el precio especial.

Antes:$249

Currency
$209

Paga en 4 cuotas sin intereses

Paga en 4 cuotas sin intereses
Suscríbete

Termina en:

13d

21h

07m

56s

1

cómo usar el comando "--amend" en Git

La función de este comando, es la de modificar un commit anterior sin la necesidad de crear uno nuevo, por ejemplo:

git status
Untracked files:
(use “git add <file>…” to include in what will be committed)
file.html
no changes added to commit (use “git add” and/or “git commit -a”)

git add file.html

git commit --amend

git status
On branch main
nothing to commit, working tree clean.

Escribe tu comentario
+ 2