You are here |
blog.piotrnalepa.pl | ||
| | | |
qsantos.fr
|
|
| | | | ||
| | | |
blog.dnsimple.com
|
|
| | | | A retrospective of the last two years where we adopted --squash as our default merge strategy for git branches. | |
| | | |
8yd.no
|
|
| | | | 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
|
|
| | 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 |