Fix the problem with fetching not updating repos (#61)

This commit is contained in:
Mark Karpov 2017-03-01 21:01:54 +04:00 committed by GitHub
parent 4a64328bf0
commit ff938a3c71
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 0.3.1.0
* Fixed a bug with repos not being fetched properly.
## 0.3.0.1
* Reduced verbosity of some commands to make reading logs easier.

View File

@ -226,7 +226,8 @@ instance Command GitFetch where
type Result GitFetch = ()
renderCommand (GitFetch remote) = formatCmd "git"
[ Just "fetch"
, Just remote ]
, Just remote
, Just "+refs/heads/*:refs/heads/*" ]
parseResult Proxy _ = ()
-- | Git reset.