Let's break down these two Git configuration commands:
git config --global pull.ff always
git config --global merge.ff false
Both commands use --global
, meaning these settings will apply to all your Git repositories on your system, unless overridden by a local repository configuration.