Aprendizaje de Git desde 0. En este repositorio muestro como voy aprendiendo poco a poco los comandos de git.
Espero aprender mucho.
git --version
git help <comandos>*
git config --global user.name <usuario>
git config --global user.email <correo>
git config --list
git init
git status
git add --all
git add .
git commit -m "<mensaje>"
git commit --amend
git tag <tag> -m "<mensaje>"
git tag
git tag -d <tag>
git tag -a <tag> <commit> -m "<mensaje>"
git show <tag>
git reset
git reset --soft
git reset --hard <commit>
git log --oneline
git log --oneline --graph --all
git checkout <commit>
git diff <commit> <commit>
git branch <rama>
git branch
git checkout <rama>
git checkout -b <rama>
git branch -m <rama>
git branch -d <rama>
git merge <rama>
git merge --no-ff <rama>
git rebase <rama>
Para subir nuestro proyecto debemos crear un repositorio remoto. Al crearlo nos mostrará una serie de comandos para subir el proyecto. Te pedirá el usuario y contraseña de tu cuenta de git si aún no lo registras.
git remote add origin <url>
git remote set-url origin <url>
git remote -v
git push -u origin <rama>
git push
git push origin <rama>
git push origin --delete <rama>
git push --tags
git tag -d <tag>
git push origin :refs/tags/<tag>
git pull
git pull origin <rama>
git clone <url>
git clone --branch <rama> <url>