Skip to content

Latest commit

 

History

History
executable file
·
97 lines (61 loc) · 2.55 KB

faq.rst

File metadata and controls

executable file
·
97 lines (61 loc) · 2.55 KB

Frequently Asked Questions (FAQ)

General questions

How can I check the history of a file?

You can check the history of a file by typing in MATLAB:

>> history('fileName.m')

Print more detailed debugging information (verbose)

If you encounter a problem, or suspect that something is not behaving properly, please run:

>> contribute(1)

and follow the process as normally. This will set printLevel = 1. You can also set permanently gitConf.printLevel = 1; in assets/confDevTools.m.

Technical questions

I receive a Permission denied error. What can I do?

You may encounter the following error:

Permission denied (publickey)
fatal: could not read from the repository.

Please make sure you have the correct access rights
and the repository exists.

This error can have multiple reasons, but most likely, the SSH key is not configured properly. Please follow the configuration instructions carefully.

Another source of this error may be that you have set a passphrase when generating the SSH key. Please leave the passphrase empty when generating the SSH key.

Mismatch of the version of openSSL (Linux)

You might be in the situation that you receive the following error:

OpenSSL version mismatch. Built against 1000207f, you have 100010bf

In that case, you should run the following command:

sudo mv <MATLAB_INSTALLATION_PATH>/bin/glnxa64/libcrypto.so.1.0.0 <MATLAB_INSTALLATION_PATH>/bin/glnxa64/libcrypto.so.1.0.0_bk

where <MATLAB_INSTALLATION_PATH> corresponds to the installation of MATLAB, e.g., /usr/local/MATLAB/R2016b

Resolve unexpected behavior - reset

If you encounter unexpected behavior, please try to reset the MATLAB.devTools using the resetDevTools functionality.

If you have files or changes that appear and would like to reset your local fork (without re-cloning) again, type:

>> resetLocalFork

How can I abort a process?

You can abort any process using CTRL+C (hit CTRL and C on your keyboard).