Clone the forked repository to your computer #565
Replies: 2 comments 1 reply
-
I think cloning directly into the current directory ( I think it would be much less error-prone to do this: # Clone to a specific directory that doesn't exist yet
git clone https://github.com/OrgName/threadbare-yourquest.git ~/Desktop/storyquest
# Now `cd` to that directory
cd ~/Desktop/storyquest(As an aside I think the Markdown notation with three backticks, putting the commands in their own paragraph, is much clearer than having them inline. The command with a trailing |
Beta Was this translation helpful? Give feedback.
-
|
I have adjusted the formatting to use fenced blocks (triple-backticks) to put commands that should be typed into their own clearly-delineated paragraphs. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Why this task matters
Cloning pulls the Threadbare fork from GitHub onto your machine, creating a local Git repo you can edit.
Steps
Create a folder for your StoryQuest. Navigate to a location like Documents or Desktop. Right-click and select New > Folder. Name it something simple, like
storyquest(no spaces or capital letters).Get the repository URL. Open the repository on GitHub and look for the green dropdown box that says Code. Copy the HTTPS URL to your clipboard. It will look something like:
Tell Git where to find the new folder. There are two ways to do this:
cd(change directory) command: Open Git and type:dirto list the contents of the current folder you are in.Clone the repository into your folder. Use this command:
Git will clone the repository as a new folder inside the one you made. You can just use the
cdcommand once more to navigate into this folder.Check your status. Run:
You should see:
On branch mainandnothing to commit.✅ Done! You now have a working copy of the project ready to open in Godot.
Video
Beta Was this translation helpful? Give feedback.
All reactions