Configures the line endings for a repository.
git config core.eol [lf | crlf]
to configure the line endings.lf
is the UNIX line ending (\n
), whereas crlf
is the DOS line ending (\r\n
).git config core.eol [lf | crlf]
git config core.eol lf # Configured to use UNIX line endings
Git, Repository
Sets up a commit message template for the current repository.
Git, Repository
Initializes a new git repository, setting up all the configuration files needed by git.
Git, Repository
Prints a visual graph of all commits and branches in the repository.