This commit is contained in:
Joao Moreno
2018-04-24 18:10:28 +02:00
parent 36e6cbb766
commit 7cf50421da

View File

@@ -1001,7 +1001,7 @@ export class Repository {
}
async pull(rebase?: boolean, remote?: string, branch?: string): Promise<void> {
const args = ['pull'];
const args = ['pull', '--tags'];
if (rebase) {
args.push('-r');