-1

I am an absolute beginner with Git and clone. So I cloned a Git repository (see picture). But where is the folder, where can I see the content?

Git

2
  • 2
    Seems that the operation failed, see here in the error log. Commented Feb 27, 2019 at 19:17
  • Tip: Instead of posting an image you have to redact, just copy-paste the text and edit accordingly. Commented Feb 27, 2019 at 19:21

3 Answers 3

1

In your directory Git is already initialized, delete the .git directory in your project root folder. If not shown, enable hidden files in strings.

Sign up to request clarification or add additional context in comments.

1 Comment

How does this help?
0

Very useful command:

ls -a

It shows the content of the current directory.

You've tried to clone your repository two times in a row, so the main directory of your repository already exists. You'd better delete it using next command:

rm -rf MXDial-IoT-Sample

And then you can clone your repository once again with git clone.

If you want to "find the folder", use ls.

To change the current directory to your repository use:

cd MXDial-IoT-Sample

To open it:

explorer .

1 Comment

Explorer? Assuming Microsoft Windows?
0

Run:

mv MXDial-IoT-Sample MXDial-IoT-SampleBAK

And then:

git clone https://github.com/Microsoft/MXDial-IoT-Sample.git

2 Comments

I did that. So where can I find the folder? Sry I am such a beginner
How does this help?

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.