Guest User

Untitled

a guest
Jan 16th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Git alias for pull && submodule update
  2. git config --global alias.pullall '!git pull && git submodule update --init --recursive'
  3.  
  4. Enable git store credentials.
  5. git config credential.helper store
  6.  
  7. Ver difftools disponibles
  8. git difftool --tool-help
  9.  
  10. Setear diff tool
  11. git config --global diff.tool opendiff
  12.  
  13. Eliminar el prompt del difftool
  14. git config --global --add difftool.prompt false
Add Comment
Please, Sign In to add comment