Podemos usar el comando git config credential.helper
$ git config credential.helper cache
$ git config --global credential.helper cache
por defecto se guarda 15 minutos, pero podemos especificar el tiempo que necesitemos.
Por ejemplo para 1 hora hacemos lo siguiente:
$ git config credential.helper 'cache --timeout=3600'
$ git config --global credential.helper 'cache --timeout=3600'
Para 24 horas:
$ git config credential.helper 'cache --timeout=86400'
$ git config --global credential.helper 'cache --timeout=86400'
[201]
Agregando la siguiente línea a nuestro archivo .gitignore
**/*.ipynb_checkpoints/
[202]
Se usa el parámetro unset de la siguiente manera:
$ git config --unset credential.helper
o de manera global
$ git config --global --unset credential.helper
[203]
git clone git@bitbucket.org:usuario/repositorio.git
[204]
[205]
[206]
[207,208]
Si queremos ver las diferencias de los archivos en commits distintos, podemos usar:
git diff <commit>
por ejemplo si el hace dos commit se tenia e2c361bf029d2d6562737fd43e2e9f437022841e
git diff e2c361bf029d2d6562737fd43e2e9f437022841e
[210]
Algunos tutoriales