Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
Before you can "push" commits to another repository, you need to add it as a remote repo.
Update
Add to myclone/medals.html
:
<div>
<a href="gold.html">Gold medals</a>
</div>
<div>
<a href="silver.html">Silver medals</a>
</div>
- Then stage the changes:
git add medals.html
, and commit them:git commit -m "Add links"
- That commit now appears in our history for the
myclone
repository.
- That commit now appears in our history for the
- But this commit does not appear in the
medals
repository. - Although we were able to run
git pull
in themyclone
repository to pull in commits from themedals
repository, we can't pull frommyclone
tomedals
yet. - When we cloned the
medals
repository to themyclone
repository,medals
was automatically set up as a remote repo onmyclone
.- But the reverse isn't true. In fact, we can try running
git remote
from themedals
repo, and we won't see any remote repos at all.
- But the reverse isn't true. In fact, we can try running
- So we're going to need to add
myclone
as a remote on themedals
repo.- We can do this with the
git remote add
subcommand. -
git remote add
takes two arguments: - The first is the name we want to give the remote repo. We can use any name we want, but generally, it should be all lowercase. We'll use the name
myclone
for this remote. - The second argument will usually be the URL of the remote repository.
- But since this "remote" repo is just another directory on our local computer, we'll give it the path to that directory instead:
../myclone
- But since this "remote" repo is just another directory on our local computer, we'll give it the path to that directory instead:
- We can do this with the
git remote add myclone ../myclone
- Now let's try running
git remote
again. This time, we'll see a remote repo with the name we specified,myclone
. - For this first-time running
git pull
, we need to provide two arguments:- The remote repo we're pulling from:
myclone
- The "branch" we want to pull:
main
| UPDATE - Renaming the default branch frommaster
tomain
. - By default, Git repositories start with only one branch, named
main
. - Because we haven't created any other branches, our work in the
myclone
repo will be on themain
branch there, as well.
- The remote repo we're pulling from:
git pull myclone main
- That command will pull our new commit from the
myclone
remote repo into themedals
repo.
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Mohammed El Bajaj
Front End Web Development Techdegree Student 9,355 PointsWhat is a branch?
2 Answers
-
Kirt Perez
7,374 Points1 Answer
-
Jake Almendarez
Front End Web Development Techdegree Student 4,250 Points2 Answers
-
djsands
6,286 Points1 Answer
-
Stefan Cutajar
7,747 Points3 Answers
-
MOD
Jonathan Grieve
Treehouse Moderator 91,254 Points1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up