Guest User

Untitled

a guest
Jan 24th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. //Per memorizzarle definitivamente
  2. git config --global credential.helper store
  3.  
  4. //Per memorizzarle temporaneamente
  5. git config --global credential.helper cache
  6. //Durata: 15 minuti di default, per modificare la durata usa:
  7. git config --global credential.helper 'cache --timeout=3600'
  8. //espresso in secondi, 3600sec=1ora
  9.  
  10.  
  11. //Per rimuovere le credenziali usa questo:
  12. git config --global --unset credential.helper
Add Comment
Please, Sign In to add comment