Reputation: 1
I am starting to work on a repository which is on github from vscode. My files in the project cannot import each other.in vs code terminal which is local I cannot find repository and also since I have push and commit access and source control tracks my changes so I dont need clone that. How can import files to each other.
I tried usual import codes but they don’t work. Also I tried to direct to repo from terminal but I font have it because it is remote.
Upvotes: -2
Views: 33
Reputation: 9229
Open your terminal and run:
git clone https://github.com/your-username/your-repo.git
cd your-repo
code .
Upvotes: 0