Clear Recent Repos in Git Gui Announcing the arrival of Valued Associate #679: Cesar Manara ...
What makes a man succeed?
How does light 'choose' between wave and particle behaviour?
What does 丫 mean? 丫是什么意思?
In musical terms, what properties are varied by the human voice to produce different words / syllables?
Google .dev domain strangely redirects to https
Most bit efficient text communication method?
Central Vacuuming: Is it worth it, and how does it compare to normal vacuuming?
What do you call the main part of a joke?
How do living politicians protect their readily obtainable signatures from misuse?
macOS: Name for app shortcut screen found by pinching with thumb and three fingers
What is best way to wire a ceiling receptacle in this situation?
An adverb for when you're not exaggerating
What is the meaning of 'breadth' in breadth first search?
How do I find out the mythology and history of my Fortress?
Do wooden building fires get hotter than 600°C?
Is multiple magic items in one inherently imbalanced?
Co-worker has annoying ringtone
If Windows 7 doesn't support WSL, then what is "Subsystem for UNIX-based Applications"?
Getting prompted for verification code but where do I put it in?
Did Mueller's report provide an evidentiary basis for the claim of Russian govt election interference via social media?
How to compare two different files line by line in unix?
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
Lagrange four-squares theorem --- deterministic complexity
How did Fremen produce and carry enough thumpers to use Sandworms as de facto Ubers?
Clear Recent Repos in Git Gui
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Update git on macBreakdown Git version numberGit, Powershell, %HOME% and multiple reposHow to remotely clone Git repository on Windows Storage Server 2008?Git: Command not found WindowsBuilding a git repository from a set of manual archivesHow to keep a Git repository always updated locally?Groups and subgroups of multiple git repositories?git annex, how to add git-sub directoriesHow to combine to git repos coming from the same svn original project
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
How can I clear entries in the Git Gui's the recent repositories without deleting those repositories or the .git
folders within them?
Here is an example:
Here is my Git/Git Gui version info:
git git-gui
add a comment |
How can I clear entries in the Git Gui's the recent repositories without deleting those repositories or the .git
folders within them?
Here is an example:
Here is my Git/Git Gui version info:
git git-gui
add a comment |
How can I clear entries in the Git Gui's the recent repositories without deleting those repositories or the .git
folders within them?
Here is an example:
Here is my Git/Git Gui version info:
git git-gui
How can I clear entries in the Git Gui's the recent repositories without deleting those repositories or the .git
folders within them?
Here is an example:
Here is my Git/Git Gui version info:
git git-gui
git git-gui
edited 7 hours ago
Steven M. Vascellaro
4,8661854103
4,8661854103
asked Jun 12 '13 at 15:54
Ryan GatesRyan Gates
4672828
4672828
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
The list of recently opened repositories is stored in the config as gui.recentrepos.
Visit https://stackoverflow.com/questions/2114111/where-does-git-config-global-get-written-to for more info about where config files are stored.
For example: in my %HOMEPATH%
folder file .gitconfig
(msysGit 1.8.1):
[gui]
recentrepo = C:/one
recentrepo = C:/two
And in C:Program filesGitetcgitconfig
there are no gui.recentrepo setting, global settings only.
I found the.gitconfig
file under my C:Usersusername folder, but it had different entries from what I see in the UI. Are there other config files that trump this one?
– Ryan Gates
Jun 12 '13 at 16:52
Find.gitconfig
in msysgit installation directory, such asC:Program filesmsysgit
or so
– madlynx
Jun 12 '13 at 17:01
Can you add code for what the config file might look like to help others?
– Ryan Gates
Jun 12 '13 at 17:18
In my case, the file was under%HOMEDRIVE%%HOMEPATH%
, which is where the shortcut's start in parameter was set to.
– Ryan Gates
Jun 12 '13 at 17:36
edited my answer
– madlynx
Jun 12 '13 at 17:58
|
show 1 more comment
Open Git Bash and try:
git config --global --unset-all gui.recentrepo
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f606748%2fclear-recent-repos-in-git-gui%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The list of recently opened repositories is stored in the config as gui.recentrepos.
Visit https://stackoverflow.com/questions/2114111/where-does-git-config-global-get-written-to for more info about where config files are stored.
For example: in my %HOMEPATH%
folder file .gitconfig
(msysGit 1.8.1):
[gui]
recentrepo = C:/one
recentrepo = C:/two
And in C:Program filesGitetcgitconfig
there are no gui.recentrepo setting, global settings only.
I found the.gitconfig
file under my C:Usersusername folder, but it had different entries from what I see in the UI. Are there other config files that trump this one?
– Ryan Gates
Jun 12 '13 at 16:52
Find.gitconfig
in msysgit installation directory, such asC:Program filesmsysgit
or so
– madlynx
Jun 12 '13 at 17:01
Can you add code for what the config file might look like to help others?
– Ryan Gates
Jun 12 '13 at 17:18
In my case, the file was under%HOMEDRIVE%%HOMEPATH%
, which is where the shortcut's start in parameter was set to.
– Ryan Gates
Jun 12 '13 at 17:36
edited my answer
– madlynx
Jun 12 '13 at 17:58
|
show 1 more comment
The list of recently opened repositories is stored in the config as gui.recentrepos.
Visit https://stackoverflow.com/questions/2114111/where-does-git-config-global-get-written-to for more info about where config files are stored.
For example: in my %HOMEPATH%
folder file .gitconfig
(msysGit 1.8.1):
[gui]
recentrepo = C:/one
recentrepo = C:/two
And in C:Program filesGitetcgitconfig
there are no gui.recentrepo setting, global settings only.
I found the.gitconfig
file under my C:Usersusername folder, but it had different entries from what I see in the UI. Are there other config files that trump this one?
– Ryan Gates
Jun 12 '13 at 16:52
Find.gitconfig
in msysgit installation directory, such asC:Program filesmsysgit
or so
– madlynx
Jun 12 '13 at 17:01
Can you add code for what the config file might look like to help others?
– Ryan Gates
Jun 12 '13 at 17:18
In my case, the file was under%HOMEDRIVE%%HOMEPATH%
, which is where the shortcut's start in parameter was set to.
– Ryan Gates
Jun 12 '13 at 17:36
edited my answer
– madlynx
Jun 12 '13 at 17:58
|
show 1 more comment
The list of recently opened repositories is stored in the config as gui.recentrepos.
Visit https://stackoverflow.com/questions/2114111/where-does-git-config-global-get-written-to for more info about where config files are stored.
For example: in my %HOMEPATH%
folder file .gitconfig
(msysGit 1.8.1):
[gui]
recentrepo = C:/one
recentrepo = C:/two
And in C:Program filesGitetcgitconfig
there are no gui.recentrepo setting, global settings only.
The list of recently opened repositories is stored in the config as gui.recentrepos.
Visit https://stackoverflow.com/questions/2114111/where-does-git-config-global-get-written-to for more info about where config files are stored.
For example: in my %HOMEPATH%
folder file .gitconfig
(msysGit 1.8.1):
[gui]
recentrepo = C:/one
recentrepo = C:/two
And in C:Program filesGitetcgitconfig
there are no gui.recentrepo setting, global settings only.
edited May 23 '17 at 12:41
Community♦
1
1
answered Jun 12 '13 at 16:37
madlynxmadlynx
33123
33123
I found the.gitconfig
file under my C:Usersusername folder, but it had different entries from what I see in the UI. Are there other config files that trump this one?
– Ryan Gates
Jun 12 '13 at 16:52
Find.gitconfig
in msysgit installation directory, such asC:Program filesmsysgit
or so
– madlynx
Jun 12 '13 at 17:01
Can you add code for what the config file might look like to help others?
– Ryan Gates
Jun 12 '13 at 17:18
In my case, the file was under%HOMEDRIVE%%HOMEPATH%
, which is where the shortcut's start in parameter was set to.
– Ryan Gates
Jun 12 '13 at 17:36
edited my answer
– madlynx
Jun 12 '13 at 17:58
|
show 1 more comment
I found the.gitconfig
file under my C:Usersusername folder, but it had different entries from what I see in the UI. Are there other config files that trump this one?
– Ryan Gates
Jun 12 '13 at 16:52
Find.gitconfig
in msysgit installation directory, such asC:Program filesmsysgit
or so
– madlynx
Jun 12 '13 at 17:01
Can you add code for what the config file might look like to help others?
– Ryan Gates
Jun 12 '13 at 17:18
In my case, the file was under%HOMEDRIVE%%HOMEPATH%
, which is where the shortcut's start in parameter was set to.
– Ryan Gates
Jun 12 '13 at 17:36
edited my answer
– madlynx
Jun 12 '13 at 17:58
I found the
.gitconfig
file under my C:Usersusername folder, but it had different entries from what I see in the UI. Are there other config files that trump this one?– Ryan Gates
Jun 12 '13 at 16:52
I found the
.gitconfig
file under my C:Usersusername folder, but it had different entries from what I see in the UI. Are there other config files that trump this one?– Ryan Gates
Jun 12 '13 at 16:52
Find
.gitconfig
in msysgit installation directory, such as C:Program filesmsysgit
or so– madlynx
Jun 12 '13 at 17:01
Find
.gitconfig
in msysgit installation directory, such as C:Program filesmsysgit
or so– madlynx
Jun 12 '13 at 17:01
Can you add code for what the config file might look like to help others?
– Ryan Gates
Jun 12 '13 at 17:18
Can you add code for what the config file might look like to help others?
– Ryan Gates
Jun 12 '13 at 17:18
In my case, the file was under
%HOMEDRIVE%%HOMEPATH%
, which is where the shortcut's start in parameter was set to.– Ryan Gates
Jun 12 '13 at 17:36
In my case, the file was under
%HOMEDRIVE%%HOMEPATH%
, which is where the shortcut's start in parameter was set to.– Ryan Gates
Jun 12 '13 at 17:36
edited my answer
– madlynx
Jun 12 '13 at 17:58
edited my answer
– madlynx
Jun 12 '13 at 17:58
|
show 1 more comment
Open Git Bash and try:
git config --global --unset-all gui.recentrepo
add a comment |
Open Git Bash and try:
git config --global --unset-all gui.recentrepo
add a comment |
Open Git Bash and try:
git config --global --unset-all gui.recentrepo
Open Git Bash and try:
git config --global --unset-all gui.recentrepo
answered Jan 14 '16 at 16:51
Mitrakov ArtemMitrakov Artem
15113
15113
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f606748%2fclear-recent-repos-in-git-gui%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown