You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def validate_project(cls, values: dict):
try:
values["username"] = subprocess.check_output(["git", "config", "--get", "user.name"])
values["email"] = subprocess.check_output(["git", "config", "--get", "user.email"])
except Exception as error: (Exception file not found error and not only subprocess.CalledProcessError)
values["email"] = get something from args in cli on start
values["username"] = get something from args in cli on start
...
The text was updated successfully, but these errors were encountered:
new windows system. I want work local. i dont need git for my goals.
falls on context.py
my opinion it should be possible to takeinfo from cli:
in this case it can be:
The text was updated successfully, but these errors were encountered: