+:index
parent
4e3bf4bd98
commit
0730639125
@ -3,6 +3,26 @@
|
||||
-----
|
||||
|
||||
# Hoja de comandos basicos git
|
||||
### Indice
|
||||
* [Instalación](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-instalar-y-configurar-user)
|
||||
* [Crear Repositorio (directorio local)](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-crear-repositorio-en-directorio-actual)
|
||||
* [Git-Reset](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-git-reset)
|
||||
* [Checkout](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-checkout)
|
||||
* [status-log-config](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-otros)
|
||||
* [Branches(Ramas)](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-branches)
|
||||
- [Crear/Borrar Rama](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-crear-rama)
|
||||
- [Merge/Rebase](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-fusionar-ramas)
|
||||
* [Log](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-log)
|
||||
* [Alias - Stach - Diff - Fetch](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-alias-log)
|
||||
* Trabajando con repositorios remotos:
|
||||
- [Clonar repositorio remoto](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-clonar-repositorio-o-https)
|
||||
- [Ver/Eliminar vinculo remoto](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-ver-y-eliminar-vinculo-con-repositorio-remoto)
|
||||
- [Crear repositorio remoto](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-crear-nuevo-repositorio-remoto)
|
||||
- [Git-Push](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-push-repo-local-a-remota)
|
||||
* [Llaves ssh](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-llaves-ssh)
|
||||
* [Git Ignore](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-git-ignore)
|
||||
* [Referencias](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Comandos-Basicos-Git#user-content-docs-referencias)
|
||||
|
||||
-----
|
||||
## Instalar y configurar user:
|
||||
|
||||
@ -41,17 +61,14 @@ git commit -am "Mensaje"
|
||||
|
||||
git commit -m "--amend para sobreescribir el ultimo commit" --amend
|
||||
```
|
||||
### HEAD, puntero, indica el commint en el cual esta situado el puntero de git
|
||||
|
||||
### Listar Ramas
|
||||
`git branches --list`
|
||||
##### HEAD ` indica el commint en el cual esta situado el puntero de git`
|
||||
|
||||
### Otros
|
||||
```
|
||||
git status
|
||||
git log
|
||||
git config --global alias.[alias] "comando" # Alias
|
||||
```
|
||||
`git status`
|
||||
`git log`
|
||||
`git config --global alias.[alias] "comando"` Alias
|
||||
`git branches --list`
|
||||
|
||||
## Git Reset
|
||||
#### RESET
|
||||
##### deja el proyecto en el stado del commit indicado
|
||||
@ -95,6 +112,8 @@ git config --global alias.[alias] "comando" # Alias
|
||||
## BRANCHES
|
||||
##### linea alterna del repositorio
|
||||
|
||||
Ver ramas: `git branches --list`
|
||||
|
||||
#### Crear rama
|
||||
```
|
||||
git branch "nombre_rama"
|
||||
@ -115,7 +134,7 @@ git branch -d "rama"
|
||||
`git checkout "rama"`
|
||||
|
||||
##### Omitir preparación archivo
|
||||
git checkout -- "archivo"
|
||||
`git checkout -- "archivo"`
|
||||
|
||||
### FUSIONAR ramas
|
||||
##### (fusiona desde la rama actual, debes posicionarte en master)
|
||||
@ -230,7 +249,7 @@ git commit -m "first commit"
|
||||
git remote add origin sshUsr@host:RepoUsr/Repo.git
|
||||
git push -u origin master
|
||||
```
|
||||
### Pushing repositorio local
|
||||
### Push repo local a remota
|
||||
**ssh**
|
||||
`git remote add origin sshUsr@192.8.8.8:88/usrRepo/repo.git`
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user