Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 578 Bytes

frequently-asked-questions.md

File metadata and controls

27 lines (18 loc) · 578 Bytes
description
A list of commonly asked questions or problems related to Modmail.

Frequently Asked Questions

I tried installing the dependencies with another Python version and it messed up my Pipfile! How can I get the original Pipfile back?

First remove the broken Pipfile and Pipfile.lock with:

rm Pipfile && rm Pipfile.lock

Fetch in the changes from the remote repository:

git fetch origin

And then, fetch the original files with:

git checkout FETCH_HEAD -- Pipfile && git checkout FETCH_HEAD -- Pipfile.lock