“git stash docs” Código de respuesta

comando git stash limpio

git stash clear
Blue Badger

git stash docs

git stash list [<log-options>]
git stash show [-u|--include-untracked|--only-untracked] [<diff-options>] [<stash>]
git stash drop [-q|--quiet] [<stash>]
git stash ( pop | apply ) [--index] [-q|--quiet] [<stash>]
git stash branch <branchname> [<stash>]
git stash [push [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]
	     [-u|--include-untracked] [-a|--all] [-m|--message <message>]
	     [--pathspec-from-file=<file> [--pathspec-file-nul]]
	     [--] [<pathspec>…​]]
git stash clear
git stash create [<message>]
git stash store [-m|--message <message>] [-q|--quiet] <commit>
Glorious Gnu

Git Stash

git stash show -p stash@{1}
Happy Hyena

Ejemplo de Git Stash

git stash push -m "message" // use for code added in statsh 
git stash list // use for check stash list
git stash apply stash@{index}
Bored Baboon

Git Stash

$ git stash list
stash@{0}: WIP on master: 049d078 added the index file
stash@{1}: WIP on master: c264051 Revert "added file_size"
stash@{2}: WIP on master: 21d80a5 added number to log
Energetic Elk

Git Stash

$ git status On branch master Changes to be committed: new file: style.css Changes not staged for commit: modified: index.html $ git stash Saved working directory and index state WIP on master: 5002d47 our new homepage HEAD is now at 5002d47 our new homepage $ git status On branch master nothing to commit, working tree clean
Average Ant

Respuestas similares a “git stash docs”

Preguntas similares a “git stash docs”

Más respuestas relacionadas con “git stash docs” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código