Git with Atom - Troubleshooting/FAQ


General Authentication Issues

Possible Symptoms

  • Folder is created but no files are downloaded (and/or only ".git" folder is create).
  • Nondescript authentication related error message.
  • Nothing happened after a long while.

Possible Fixes

If you are using the HTTPS method...

    You should not be using HTTPS to clone from GitLab. Make sure to review the Git with Atom setup guides for your operating system to review how to clone with SSH.

If you are already using the SSH method...

  • First, make sure that you are actually using the "Clone with SSH" URL from GitLab instead of the "Clone with HTTPS".
  • Then, make sure that you gone through every step of this process:
  • Ensure that you have set up your Keys correctly by running the command:
    ssh -T git@gitlab.cs.washington.edu
    Respond with "Yes" if it prompts you. It should read, "Welcome to GitLab" and then your username. If not, go through the key setup process again.

General Atom/Git GUI Issues

You see the following error message while cloning:

Unable to clone git@gitlab.cs.washington.edu:cse154-19sp-tas/cp1-html-css-jvenberg.git
Cloning into '/Users/jackv/GitLab/cp1-html-css-jvenberg'...
error: cannot run undefined: No such file or directory
error: cannot run undefined: No such file or directory
fatal: unable to fork

You see the following error message when trying to commit:

*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.

The "Git" side bar is empty.