Home
last modified time | relevance | path

Searched refs:gitExePath (Results 1 – 7 of 7) sorted by relevance

/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/prefs/views/
H A DSourceControlPreferencesPane.java89 String gitExePath = gitExePathChooser_.getText(); in SourceControlPreferencesPane()
90 if (!gitExePath.endsWith("git.exe")) in SourceControlPreferencesPane()
92 String message = "The program '" + gitExePath + "'" + in SourceControlPreferencesPane()
164 gitExePathChooser_.setText(prefs.gitExePath().getValue()); in initialize()
199 prefs.gitExePath().setGlobalValue(gitExePathChooser_.getText()); in onApply()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/modules/
H A DSessionTerminalShell.cpp295 core::FilePath gitExePath = modules::git::detectedGitExePath(); in getGitBashShell() local
296 if (!gitExePath.isEmpty()) in getGitBashShell()
301 core::FilePath gitBashPath = gitExePath.getParent().completePath("bash.exe"); in getGitBashShell()
307 gitBashPath = gitExePath.getParent().getParent().completePath("usr/bin/bash.exe"); in getGitBashShell()
H A DSessionGit.cpp3155 FilePath gitExePath(prefs::userPrefs().gitExePath()); in onUserSettingsChanged() local
3156 if (session::options().allowVcsExecutableEdit() && !gitExePath.isEmpty()) in onUserSettingsChanged()
3159 s_gitExePath = gitExePath.getAbsolutePath(); in onUserSettingsChanged()
3204 s_gitExePath = prefs::userPrefs().gitExePath(); in initGitBin()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/infra/bots/task_drivers/cifuzz/
H A Dcifuzz.go30 gitExePath = flag.String("git_exe_path", "", "Path to a git exe. Used to checkout cifuzz repo.")
48 gitAbsPath := td.MustGetAbsolutePathOfFlag(ctx, *gitExePath, "git_exe_path")
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/prefs/model/
H A DUserPrefsAccessor.java2298 public PrefValue<String> gitExePath() in gitExePath() method in UserPrefsAccessor
3497 gitExePath().setValue(layer, source.getString("git_exe_path")); in syncPrefs()
3788 prefs.add(gitExePath()); in allPrefs()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/include/session/prefs/
H A DUserPrefValues.hpp1361 std::string gitExePath();
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/prefs/
H A DUserPrefValues.cpp2109 std::string UserPrefValues::gitExePath() in gitExePath() function in rstudio::session::prefs::UserPrefValues