Mikhail Sokolov
Mikhail Sokolov

Reputation: 31

How to delete repo on AWS Cloud9?

Recently started working with AWS Cloud9 and ran into problem how to delete/remove local repository from a list.

GUI allows many actions by click, but remove repository is not one of them.

How do i remove repository from sourcecontrol panel?

Upvotes: 2

Views: 579

Answers (2)

Louis Rodriguez
Louis Rodriguez

Reputation: 1

i have found the commands below helpful in the clean up process

list command; aws cloudformation list-stacks

delete command; aws cloudformation delete-stack --stack-name

list crawlers command; aws glue get-crawlers

delete crawlers command; aws glue delete-crawler --name

list command; aws glue get-jobs

delete command; aws glue delete-job --job-name

list command; aws iam list-users

delete command; aws iam delete-user --user-name

list command; aws s3 ls

delete command; aws s3 rb s3:// --force

Upvotes: 0

Mikhail Sokolov
Mikhail Sokolov

Reputation: 31

What worked for me is treating Cloud9 as regular terminal.

To remove repository you need to run commands:

rm -rf your-repository/.git

And if you would like to clean up the files:

rm -rf your-repository

Upvotes: 1

Related Questions