Я хочу зафиксировать вновь созданный файл в git, используя php
Storage::put( $input['people'].'.txt', $input['people']);
$output = exec('git -c add .', $shell_output,$status);
$output1 = shell_exec('git -c user.name="gitusername" -c user.email="gitemail" commit -m "Created new file named: '. $input['people'] .'"');
$output2 = shell_exec('git push origin master 2>&1');
Это не фиксация или отправка кода на git.