You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@whimsical.apache.org by sebb <se...@gmail.com> on 2017/06/02 12:57:21 UTC

rake git:pull and svn:update may not fully synchronise with repos

I had assumed that git:pull/svn:update would synch. the local copies
with the remote repos.

However, that's not exactly true, as I just discovered:

git:pull
If a local copy of a file is missing or changed locally, git pull
ignores this completely

svn:update
If a local file is missing, it will be restored
If a local file is changed locally (but not in the repo), update does nothing

In theory, local changes to files should not happen, but ...

Maybe the rake tasks need to run git status/svn -u status after updating?