

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 4
click for more info
Not enough gems
Cost: 6 gems
1: Git Remote
incomplete
2: Adding a Remote
incomplete
3: Fetch
incomplete
4: Making Fetch Happen
incomplete
5: Not Fetched
incomplete
6: Log Remote
incomplete
7: Merge
incomplete
This lesson's interactive features are locked, please to keep using them
In git, another repo is called a "remote." The standard convention is that when you're treating the remote as the "authoritative source of truth" (such as GitHub) you would name it the "origin".
By "authoritative source of truth" we mean that it's the one you and your team treat as the "true" repo. It's the one that contains the most up-to-date version of the accepted code.
git remote add <name> <uri>
Inside our new repo, add webflyx as a remote. Give it the name origin. The uri must be a relative path to the webflyx directory – use ../webflyx. Do not use an absolute path (e.g., /home/user/...); the tests expect the relative path so the setup remains portable.
Run and submit the CLI tests from inside the new webflyx-local directory.
If you named your original repo something besides webflyx, you can rename it with mv:
mv YOUR_REPO webflyx