forked from b00tc4mp/isdi-bootcamp-202501
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
![markdown logo](https://serokell.io/files/pm/pmzzkh71.Markdown_markup_language_pic1.jpg) | ||
|
||
## git clone | ||
```sh | ||
crea una copia local. | ||
``` | ||
## git init | ||
```sh | ||
crea un repositorio vacio. | ||
``` | ||
## git status | ||
```sh | ||
se utiliza para ver el estado del repositorio. | ||
``` | ||
## git add | ||
```sh | ||
se utilia para añadir archivos. | ||
``` | ||
## git commit -m "message" | ||
```sh | ||
se utiliza para registrar los cambios que has añadido. | ||
``` | ||
## git log | ||
```sh | ||
se utiliza para ver el historial de commits. | ||
``` | ||
## git push | ||
```sh | ||
sube los commits de tu rama local a la rama correspondiente. | ||
``` | ||
## git checkout || git switch | ||
```sh | ||
se utilizan para cambiar de rama. | ||
``` | ||
## git branch | ||
```sh | ||
se utiliza para crear, eliminar o cambiar de ramas. | ||
``` |