Я клонировал программное обеспечение с помощью git clone.
git clone https://github.com/BinPro/CONCOCT.git
А потом
cd CONCOCT
git fetch
git checkout SpeedUp_Mp
Тогда я получил это сообщение.
Branch 'SpeedUp_Mp' set up to track remote branch 'SpeedUp_Mp' from 'origin'.
Switched to a new branch 'SpeedUp_Mp
Тогда я положил
sudo python ./setup.py install
Теперь я хочу превратить это в «источник», как и раньше.
Поэтому я положил
git fetch
git checkout origin
Тогда я получаю сообщение об ошибке
error: Your local changes to the following files would be overwritten by checkout:
concoct/cluster.py
Please commit your changes or stash them before you switch branches.
Aborting
Что я могу сделать? Как мне внести изменения?