Created
June 17, 2021 11:57
-
-
Save horaciod/93e3465b0abaa556b06226cb2311b379 to your computer and use it in GitHub Desktop.
backup de cambios de un repositorio git sin hacer commit
This file contains hidden or 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
| #!/bin/bash | |
| tar czvf $1 `git diff --name-only` |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Genera un tar.gz con solo los archivos modificados en un repositorio git (antes de commit y stash)