Explore >> Select a destination


You are here

blog.piotrnalepa.pl
| | qsantos.fr
9.0 parsecs away

Travel
| |
| | blog.dnsimple.com
11.3 parsecs away

Travel
| | A retrospective of the last two years where we adopted --squash as our default merge strategy for git branches.
| | 8yd.no
12.6 parsecs away

Travel
| | Git squash takes your commits and squashes them together, usually into one commit. Useful for creating one commit if you've got a lot of smaller commits that creates a messy Git history. Git rebase ...
| | connorberry.com
82.6 parsecs away

Travel
| Git with Vimdiff One time view: git difftool --tool=vimdiff --no-prompt Always: git config --global diff.tool vimdiff git config --global merge.tool vimdiff For Single Repository: git config diff.tool vimdiff git config merge.tool vimdiff To avoid having Git prompt when launching Vimdiff: git config --global difftool.prompt false