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
4 changed files
with
78 additions
and
89 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 |
---|---|---|
@@ -1,2 +1,40 @@ | ||
# isdi-bootcamp-202501 | ||
isdi-bootcamp-202501 | ||
![markdown logo](https://serokell.io/files/pm/pmzzkh71.Markdown_markup_language_pic1.jpg) | ||
|
||
## pwd(print working directory) | ||
|
||
show current directory | ||
|
||
```sh | ||
pwd | ||
/users/victor-alvarado | ||
``` | ||
## ls (list) | ||
```sh | ||
ls Readme.md staff | ||
``` | ||
|
||
## cd | ||
|
||
```sh | ||
se utiliza para cambiar de carpeta. | ||
``` | ||
|
||
## Dir | ||
```sh | ||
muestra todas las sub carpetas. | ||
``` | ||
## history | ||
```sh | ||
Muestra los comandos que has ejecutado anteriormente. | ||
``` | ||
## push | ||
```sh | ||
Envía los cambios al repositorio remoto. | ||
``` | ||
## clear | ||
```sh | ||
limpiar pantalla | ||
``` | ||
## mv | ||
```sh | ||
mover archivo o cortar |
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 |
---|---|---|
@@ -1,49 +0,0 @@ | ||
![markdown logo](https://serokell.io/files/pm/pmzzkh71.Markdown_markup_language_pic1.jpg) | ||
|
||
## pwd(print working directory) | ||
|
||
show current directory | ||
|
||
```sh | ||
pwd | ||
/users/victor-alvarado | ||
``` | ||
|
||
|
||
## ls (list) | ||
```sh | ||
ls Readme.md staff | ||
``` | ||
|
||
## cd (change directory) | ||
(cambio de carpeta) | ||
|
||
```sh | ||
cd staf | ||
``` | ||
## Dir (muestra todas las sub carpetas) | ||
|
||
```sh | ||
dir | ||
``` | ||
## history | ||
```sh | ||
Muestra los comandos que has ejecutado anteriormente. | ||
``` | ||
## git clone | ||
```sh | ||
Clona un repositorio Git. | ||
``` | ||
|
||
## push | ||
```sh | ||
Envía los cambios al repositorio remoto. | ||
``` | ||
## clear | ||
```sh | ||
limpiar pantalla | ||
``` | ||
## mv | ||
```sh | ||
mover archivo o cortar | ||
```` | ||
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. | ||
``` |
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