Skip to content

Instantly share code, notes, and snippets.

@DuqueDeTuring
Created July 21, 2012 02:15
Show Gist options
  • Save DuqueDeTuring/3154252 to your computer and use it in GitHub Desktop.
Save DuqueDeTuring/3154252 to your computer and use it in GitHub Desktop.
Agrega a un repositorio git los archivos modificados en los últimos 2 minutos (excluyendo el directorio del repositorio)
find . -name '.git*' -type d -prune -o -newerct "2 minute ago" -type f -print -exec git add '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment