Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Git Basics Working With Remote Repositories Pushing and Pulling

Adam Rubinson
Adam Rubinson
4,286 Points

Challenge task 3 of 4.

I'm guessing it's some kind of git pull, but I'm not getting the correct answer and I've tried several variants.

What is the answer? And why is it the correct answer?

Thanks

1 Answer

Steven Parker
Steven Parker
229,644 Points

The link button on this question leads to a video. I'm going to guess that you're talking about the challenge that comes after this video.

So the 3rd task is "git remote add tommy http://tommysgitstuff.com/git_basics/cool_stuff.git" since you're adding a remote, you're naming it "tommy", and the rest of the line is the location of the repo.

Does that address your issue?

Adam Rubinson
Adam Rubinson
4,286 Points

Yes, thanks.

So a "remote" is a remote repository, like a project on the cloud, or a project on GitHub, for example?

Steven Parker
Steven Parker
229,644 Points

Remote repositories are versions of your project that are hosted on the Internet or network somewhere.

Glad I could help. Happy coding!