Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I remove a repository from SmartGit?

Tags:

git

smartgit

How do I remove a local repository from SmartGit v7?

If I delete the repository from disk it still appears in my list of repositories but with <missing> after it.

I cannot see any way of removing it from the UI.

like image 275
Coin_op Avatar asked Dec 21 '15 20:12

Coin_op


People also ask

How do I delete a cloned local repository?

Delete Local GitHub Repository In some cases, you don't want to delete a remote GitHub repository but you only want to delete the copy you got by cloning the remote repository. In order to delete a local GitHub repository, use the “rm -rf” on the “. git” file located at the root of your Git repository.

How do I permanently delete a Git repository?

Delete Files using git rm. The easiest way to delete a file in your Git repository is to execute the “git rm” command and to specify the file to be deleted. Note that by using the “git rm” command, the file will also be deleted from the filesystem.

How do I remove a Git repository from VS code?

Right-click the project in the Project Explorer panel and then choose Source Control > Delete Repository from the context menu.


2 Answers

Right click on the repo and choose "Remove" item. Note that you have to close the repo to be able to do this. One way to close the repo is to right click on it and choose "Close" item. Another way is to open a different repo.

like image 148
Mikhail Avatar answered Oct 21 '22 07:10

Mikhail


delete the .git folder and it will remove it

like image 2
CodeWizard Avatar answered Oct 21 '22 05:10

CodeWizard