我有一个克隆的存储库,仅用于构建一些程序。每次构建后,都会有一些文件添加到克隆存储库的目录中,因此,当我想执行 git pull 时,我会收到如下错误:
error: cannot pull with rebase: You have unstaged changes.
error: please commit or stash them.
然后,我必须做一个git add .
然后git commit -m "commit before pull"
和git pull
。
我该怎么做才能与这个克隆类似地工作subversion
,我的意思是,只需从服务器中提取并构建,仅此而已。