Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Git Configurations

Here are some suggested tweaks you can make to the base git configuration.

Code Block
title~/.gitconfig


[alias]
  ci = commit
  st = status
  br = branch
  co = checkout
  df = diff
  lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
  
[core]
  # WINDOWS
  # autocrlf = true

  # Mac or Linux
  autocrlf = input

Developing for Pentaho with Git

...