Short git introduction
git
is a source code management.
Configuration
- Install and configure (Installation, Name, Email, ssh key)
- Store credentials
- Alias for git history git log alias
- git diff
Manage remotes
Ignore files or folders
- .gitignore file
Store binaries in git.
Tips
find . -type d -name .git -exec sh -c '(cd {}/.. && pwd && git status -s && echo)' \;