Update ramanchada2 #66
|
What would be the proper way to update ramanchada2 from github using the terminal? |
Replies: 1 comment
TL;DR:
|
|
What would be the proper way to update ramanchada2 from github using the terminal? |
TL;DR:
|
TL;DR:
git pullThere are multiple aspects.
User's local changes
The user needs to make sure all local changes made to git-tracked files are committed, stashed or preserved in other way. If local changes are no longer needed one can reset HEAD to the last state by
git reset --hard.--hardoption should be used with caution! It discards all local changes that are not commitedObtain last version from git
Once the working directory is clear, the last version can be obtained by:
Python environment
Python packages can be installed as regular packages or in editable mode. Usually preferred method for development is the editable mode --
pip install --editable .ran f…