I want to create a new empty repository and add two files to it. However, I am stuck at adding two files with a single commit. This is my current code:
filename1="dummy1"
filename2="dummy2"
file1_content="something"
file2_content="something"
repo_name="dummy_repo"
repo = g.get_user().create_repo(repo_name)
repo.create_file(filename1, commit_message, file_content1)
The repo.create_file() takes only one file as an argument as per the docs, how do I add the second file with this commit itself?