среда, 3 апреля 2013 г.

Using vimdiff as git diff tool

git config --global diff.tool vimdiff 

git config --global difftool.prompt false 

git config --global alias.d difftool 


Typing git d yields the expected behavior, type :wq in vim cycles to the next file in the changeset.

Комментариев нет:

Linux: генерация рандомной строки для пароля

 cat /dev/urandom | tr -dc '[:alnum:]' | fold -w ${1:-20} | head -n 1