“cachette git” Réponses codées

git stas hantracked fichiers

git stash --include-untracked
Sleepy Swan

Commande Git Stash Clean

git stash clear
Blue Badger

cachette git

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

cachette git

git stash save "Stash message for reference"  #To add changes to stash stack
git stash list					 		 	  #Shows all the stashed change list
git stash clear 							  #clears stash list
To apply the stash changes :
a) git stash apply stash @{n}
	you can reapply the changes to your working copy and keep them in your stash with git stash apply
b) git stash pop stash@{n} 
 -> Popping your stash removes the changes from your stash and reapplies them to your working copy
	n - stash number to be applied  		  #Applying stash changes
git stash -u     -u optiontells git stash to also stash your untracked files
git stash drop stash@{1}					  #Cleaning up your stash
Blushing Bee

cachette git

$ 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

cachette git

$ 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

Réponses similaires à “cachette git”

Questions similaires à “cachette git”

Plus de réponses similaires à “cachette git” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code