There are many solutions to omit parts of files, but those are too complex for when you are just beginning using git. Most tricks evolve around so called filters, commands that parse and create files on checkout on your production site. But you don't need these.
The easiest trick gives you the additional benefits of making the application a bit more secure and more portable.
It is safer because all the secret data is kept in one file that can get really strict permissions (so that people who have access to e.g. FTP onto the codebase, cannot see the creds).
It is better portable, because it allows your team to run their own credentials on their own development machines the way they want them. e.g. someone using XAMP may have different database-names then someone using virtual machines or homebrewn scripts to manage their project.
On the server, create a file /path/only/www-data/has/read-access/secret.inc
<?php
/** Hashing **/
define("SECRET_HASH", "hogwards");
/** Database **/
define("DB_USER", "harry");
define("DB_PASS", "alora");
?>
Then, in your settings.php, or where you store these creds now,:
<?php
require("/path/only/www-data/has/read-access/secret.inc");
// Or slightly more portable
// require("../etc/secret.inc");
?>
You can also check in an example secret.inc for new collaborators, secret.inc.example, having the defines, but with empty strings as values.
Now you can simply push settings.php along with all other commits. And it will pick up the "secrets.inc" as found on production; using the proudction-server login details for e.g. your database.