We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f030835 commit 291e663Copy full SHA for 291e663
1 file changed
example_app/github_repo_helper.rb
@@ -90,6 +90,7 @@ def shell_create_and_push_commit(repo_credentials, application_name)
90
commands = [
91
"cd #{temp_dir}; GIT_SSH=#{git_ssh_script} git clone #{repo_ssh_url} 2>&1",
92
"cd #{temp_dir}/#{repo_name} && git config user.name '#{application_name}' 2>&1",
93
+ "cd #{temp_dir}/#{repo_name} && git config user.email '#{application_name}@example.com' 2>&1",
94
"cd #{temp_dir}/#{repo_name} && git commit --allow-empty -m 'auto generated empty commit' 2>&1",
95
"cd #{temp_dir}/#{repo_name} && git log --pretty=format:\"%h%x09%ad%x09%s\" 2>&1",
96
"cd #{temp_dir}/#{repo_name}; GIT_SSH=#{git_ssh_script} git push origin master 2>&1"
0 commit comments