暂存tig中的所有文件

时间:2019-01-25 03:32:26

标签: tig

在git的tig命令行工具中,转到状态视图,然后按u暂存文件。我很好奇的是如何多次执行该操作而不重复单词u。是否可以仅使用一个键组合暂存多个文件或所有文件?

1 个答案:

答案 0 :(得分:0)

虽然无法立即使用,但可以通过tigrc文件进行配置。例如,假设您在舞台视图中时想要将JSON_CONTAINS键映射到public static String getScreenshot(WebDriver oDriver, String ScreenShotName) throws IOException { String dateName=new SimpleDateFormat("YYYYMMDDHHMMSS").format(new Date()); TakesScreenshot ts=(TakesScreenshot)oDriver; File source=ts.getScreenshotAs(OutputType.FILE); String destination=System.getProperty("user.dir")+"/FailedScreenshots/"+ScreenShotName+dateName+".png"; File finalDestination=new File(destination); FileUtils.copyFile(source, finalDestination); String Imagepath="file://Machinename/FailedScreenshots/"+ScreenShotName+dateName+".png"; return Imagepath; } bash命令。这是您需要添加到A文件中的内容:

git add -A

语法非常简单,tigrc标志仅表示将不显示命令输出。