Skip to content

Instantly share code, notes, and snippets.

View DimDev's full-sized avatar

Dzmitry Kazbiarovich DimDev

  • EPAM Systems
  • Wrocław, Poland
View GitHub Profile
@DimDev
DimDev / gist:6102632
Last active July 24, 2020 07:07
git aliases
git config --global alias.co checkout
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.br branch
git config --global alias.hist 'log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short'
git config --global alias.type 'cat-file -t'
git config --global alias.dump 'cat-file -p'
git config --global alias.fixlast "commit --all --amend --no-edit"
git config --global color.ui auto
@DimDev
DimDev / gist:4575276
Created January 19, 2013 21:23
TO make twitter bootstrap dropdowns working on touch devices
$('body').on('touchstart.dropdown', '.dropdown-menu', function (e) { e.stopPropagation(); });