• Kyle Fuller's avatar
    [Sources] Use `git pull` with the `--ff-only` flag · b520e1f5
    Kyle Fuller authored
    This fixes issue where since we were using `--no-commit`, git was
    starting a merge but not committing it. Then subsequent `git pull`'s would
    result in the following error from git:
    
    > You have not concluded your merge (MERGE_HEAD exists).
    > Please, commit your changes before you can merge.
    
    This commit will mean that `--ff-only` is passed to `git pull`  which means
    it wont rebase or merge. It will only allow a fast forward to progress
    with the pull.
    
    Fixes #2024
    b520e1f5
Name
Last commit
Last update
..
external_sources Loading commit data...
generator Loading commit data...
hooks Loading commit data...
installer Loading commit data...
sandbox Loading commit data...
target Loading commit data...
user_interface Loading commit data...
command_spec.rb Loading commit data...
config_spec.rb Loading commit data...
executable_spec.rb Loading commit data...
external_sources_spec.rb Loading commit data...
installer_spec.rb Loading commit data...
library_spec.rb Loading commit data...
project_spec.rb Loading commit data...
resolver_spec.rb Loading commit data...
sandbox_spec.rb Loading commit data...
sources_manager_spec.rb Loading commit data...
target_spec.rb Loading commit data...
validator_spec.rb Loading commit data...