Explore >> Select a destination


You are here

hisham.hm
| | jamesmead.org
10.2 parsecs away

Travel
| | Using conditional includes in your git configuration
| | connorberry.com
4.5 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
| | purefun.dev
8.0 parsecs away

Travel
| | If you install a new machine and forget to set your email and commiter name, then your Git history will be a tad ugly, with your machine name involved instead of a real email. So how do you set the default? Like this: git config --global user.name "Alice E" git config --global user.email "alice@example.org" Override per repo Ideally, do it before you start committing things. But what if you want different committer names and emails depending on the context?
| | utf9k.net
56.3 parsecs away

Travel
| Did you know you can change Git attributes based on what folder you're in?