文件操作 - git.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/atom/resources/app/apm/lib/git.js
编辑文件内容
(function() { var _, addGitBashToEnv, addPortableGitToEnv, config, fs, npm, path, spawn; ({spawn} = require('child_process')); path = require('path'); _ = require('underscore-plus'); npm = require('npm'); config = require('./apm'); fs = require('./fs'); addPortableGitToEnv = function(env) { var binPath, child, children, cmdPath, error, githubPath, i, len, localAppData; localAppData = env.LOCALAPPDATA; if (!localAppData) { return; } githubPath = path.join(localAppData, 'GitHub'); try { children = fs.readdirSync(githubPath); } catch (error1) { error = error1; return; } for (i = 0, len = children.length; i < len; i++) { child = children[i]; if (!(child.indexOf('PortableGit_') === 0)) { continue; } cmdPath = path.join(githubPath, child, 'cmd'); binPath = path.join(githubPath, child, 'bin'); if (env.Path) { env.Path += `${path.delimiter}${cmdPath}${path.delimiter}${binPath}`; } else { env.Path = `${cmdPath}${path.delimiter}${binPath}`; } break; } }; addGitBashToEnv = function(env) { var binPath, cmdPath, gitPath; if (env.ProgramFiles) { gitPath = path.join(env.ProgramFiles, 'Git'); } if (!fs.isDirectorySync(gitPath)) { if (env['ProgramFiles(x86)']) { gitPath = path.join(env['ProgramFiles(x86)'], 'Git'); } } if (!fs.isDirectorySync(gitPath)) { return; } cmdPath = path.join(gitPath, 'cmd'); binPath = path.join(gitPath, 'bin'); if (env.Path) { return env.Path += `${path.delimiter}${cmdPath}${path.delimiter}${binPath}`; } else { return env.Path = `${cmdPath}${path.delimiter}${binPath}`; } }; exports.addGitToEnv = function(env) { if (process.platform !== 'win32') { return; } addPortableGitToEnv(env); return addGitBashToEnv(env); }; exports.getGitVersion = function(callback) { var npmOptions; npmOptions = { userconfig: config.getUserConfigPath(), globalconfig: config.getGlobalConfigPath() }; return npm.load(npmOptions, function() { var git, outputChunks, ref, spawned; git = (ref = npm.config.get('git')) != null ? ref : 'git'; exports.addGitToEnv(process.env); spawned = spawn(git, ['--version']); outputChunks = []; spawned.stderr.on('data', function(chunk) { return outputChunks.push(chunk); }); spawned.stdout.on('data', function(chunk) { return outputChunks.push(chunk); }); spawned.on('error', function() {}); return spawned.on('close', function(code) { var gitName, version, versionName; if (code === 0) { [gitName, versionName, version] = Buffer.concat(outputChunks).toString().split(' '); version = version != null ? version.trim() : void 0; } return callback(version); }); }); }; }).call(this);
修改文件时间
将文件时间修改为当前时间的前一年
删除文件