Git Cookbook
Recipes for Git
.
Git is a free and open source distributed version control system (VCS) designed to handle everything from small to very large projects with speed and efficiency. Actually, it is used for tracking changes in any set of files, usually used for coordinating work among programmers collaboritively developing source code during software development, thus it is called source code management system, SCM.
Git was created by Linus Torvalds in 2005 for development of the Linux kernel, with other kernel developers contributing to its initial development. Since 2005, Junio Hamano has been the core maintainer.
Recipes
- Git Features
- Quick Start
- Git Configuration
- Bash Prompt String
- Bash AutoCompletion
- Git URL
- Git Clone
- Git Workflow
- Git whitespace errors
- Git Handling Line Endings (CRLF)
git add
git diff
git rm
git restore
git commit
git branch
git remote
- Git Rebase
git log
git tag
git reset
- Git Credential
- Git Patch
- Git Server (SSH Protocal)
git checkout
: Git 2.23.0,switch
andrestore
were added to replacecheckout