There is a git repository at ssh://bandit31-git@localhost/home/bandit31-git/repo. This time, you don’t just need to find something—you need to push a file to the remote repository to get the password back as a response.
In previous levels, we only pulled data down. In this level, we use the “Push” side of Git. The server’s post-receive hook (a script that runs after you upload code) is configured to check if you uploaded a specific file and, if so, give you the password.
2. **Read the instructions**:
I checked the `README.md` in the repo. it said:
> "To get the password, create a file named **key.txt** with the content **'May I have the password please?'** and push it to the master branch."
3. **Create the file**:
```bash
$ echo "May I have the password please?" > key.txt
*Note: If it asks for your email/name, just run the suggested `git config` commands with fake info.*
5. **The Push**:
Now, I sent the changes back to the server:
```bash
$ git push origin master
As soon as the push finished, the server’s output printed a long message. Embedded in that text was the password for Bandit32!
[SPOILER]