Skip to content

Commit

Permalink
fix: fetch tags
Browse files Browse the repository at this point in the history
  • Loading branch information
DaRaFF committed Nov 16, 2018
1 parent 821600f commit 7fee799
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/shell/git-pull-master.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module.exports = function (dep) {
return function (argv) {
logBgYellow('Initialize the most recent master branch')
exec('git fetch --all', argv.dryRun)
exec('git fetch --tags', argv.dryRun)
exec('git checkout master', argv.dryRun)
exec('git reset --hard HEAD', argv.dryRun)
exec('git pull --rebase origin master', argv.dryRun)
Expand Down

0 comments on commit 7fee799

Please sign in to comment.