fix: git log should explicitly separate branch from paths (#5911)
This commit is contained in:
parent
143c6db0f0
commit
73af37b81b
@ -118,7 +118,7 @@ module.exports = {
|
|||||||
* SYNC
|
* SYNC
|
||||||
*/
|
*/
|
||||||
async sync() {
|
async sync() {
|
||||||
const currentCommitLog = _.get(await this.git.log(['-n', '1', this.config.branch]), 'latest', {})
|
const currentCommitLog = _.get(await this.git.log(['-n', '1', this.config.branch, '--']), 'latest', {})
|
||||||
|
|
||||||
const rootUser = await WIKI.models.users.getRootUser()
|
const rootUser = await WIKI.models.users.getRootUser()
|
||||||
|
|
||||||
@ -140,7 +140,7 @@ module.exports = {
|
|||||||
|
|
||||||
// Process Changes
|
// Process Changes
|
||||||
if (_.includes(['sync', 'pull'], this.mode)) {
|
if (_.includes(['sync', 'pull'], this.mode)) {
|
||||||
const latestCommitLog = _.get(await this.git.log(['-n', '1', this.config.branch]), 'latest', {})
|
const latestCommitLog = _.get(await this.git.log(['-n', '1', this.config.branch, '--']), 'latest', {})
|
||||||
|
|
||||||
const diff = await this.git.diffSummary(['-M', currentCommitLog.hash, latestCommitLog.hash])
|
const diff = await this.git.diffSummary(['-M', currentCommitLog.hash, latestCommitLog.hash])
|
||||||
if (_.get(diff, 'files', []).length > 0) {
|
if (_.get(diff, 'files', []).length > 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user