##// END OF EJS Templates
subrepo: only fetch unknown files from git when explicitly requested
Matt Harbison -
r24211:1e3e064c default
parent child Browse files
Show More
@@ -1662,7 +1662,7 b' class gitsubrepo(abstractsubrepo):'
1662
1662
1663 deleted, unknown, ignored, clean = [], [], [], []
1663 deleted, unknown, ignored, clean = [], [], [], []
1664
1664
1665 if not rev2:
1665 if opts.get('unknown'):
1666 command = ['ls-files', '--others', '--exclude-standard']
1666 command = ['ls-files', '--others', '--exclude-standard']
1667 out = self._gitcommand(command)
1667 out = self._gitcommand(command)
1668 for line in out.split('\n'):
1668 for line in out.split('\n'):
General Comments 0
You need to be logged in to leave comments. Login now