Explore >> Select a destination


You are here

christoph-rumpel.com
| | zzamboni.org
7.0 parsecs away

Travel
| | via http://www.codinginahurry.com/2011/02/05/three-levels-of-git-config/ Very nice explanation, viacoding in a hurry There are 3 levels of git config; project, global and system. project: Project configs are only available for the current project and stored in .git/config in the project's directory. global: Global configs are available for all projects for the current user and stored in ~/.gitconfig. system: System configs are available for all the users/projects and stored in /etc/gitconfig. Create a pr...
| | vladimirzdrazil.com
2.6 parsecs away

Travel
| | A collection of Git tips and tricks you might not know.
| | connorberry.com
4.9 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
| | bengarvey.com
15.7 parsecs away

Travel
| [AI summary] The article provides a minimalist approach to using Git for version control, focusing on essential commands like checkout, push, pull, commit, and branch management.