I've started playing with Git and have come across the terms "upstream" and "downstream". I've seen these before but never understand them fully. What do these terms mean in the context of SCMs and source code?
|
In terms of source control, you're downstream when you copy (clone, checkout, etc) from a repository. Information flowed "downstream" to you. When you make changes, you usually want to send them back "upstream" so they make it into that repository so that everyone pulling from the same source is working with all the same changes. This is mostly a social issue of how everyone can coordinate their work rather than a technical requirement of source control. You want to get your changes into the main project so you're not tracking divergent lines of development. Sometimes you'll read about package or release managers (the people, not the tool) talking about submitting changes to "upstream". That usually means they had to adjust the original sources so they could create a package for their system. They don't want to keep making those changes, so if they send them "upstream" to the original source, they shouldn't have to deal with the same issue in the next release. |
||||
|
|
|
When you read in
, that simply means there is no absolute upstream repo or downstream repo. If "yourRepo" has declared "otherRepo" as a remote one, then:
Note the "from" and "for": you are not just "downstream", you are "downstream from/for", hence the relative aspect. The DVCS twist is: you have no idea what downstream actually is, beside your own repo relative to the remote repos you have declared.
Basically: In term of "flow of data", your repo is at the bottom ("downstream") of a flow coming from upstream repos ("pull from") and going back to (the same or other) upstream repos ("push to"). You can see an illustration in the It means you are pulling from an "upstream" repo where a rebase took place, and you (the "downstream" repo) is stuck with the consequence (lots of duplicate commits, because the branch rebased upstream recreated the commits of the same branch you have locally). That is bad because for one "upstream" repo, there can be many downstream repos (i.e. repos pulling from the upstream one, with the rebased branch), all of them having potentially to deal with the duplicate commits. Again, with the "flow of data" analogy, in a DVCS, one bad command "upstream" can have a "ripple effect" downstream. Note: this is not limited to data.
|
|||||||
|
Upstream (as related to) TrackingThe term upstream also has some unambiguous meaning as comes to the suite of GIT tools, especially relative to tracking For example :
Let's say want to set the remote branch origin/master to be the tracking branch for the local master branch you've checked out. Just issue :
Upstream and Push (Gotcha)take a look at
|
|||||
|
|
That's a bit of informal terminology. As far as git is concerned, every other repository is just a remote. generally speaking, upstream is where you cloned from (the origin). downstream is any project that integrates your work with other works. The terms are not restricted to git repositories. For instance, ubuntu is a debian derivative, so debian is upstream for ubuntu. |
|||
|
|
Upstream Called HarmfulThere is, alas, another use of "upstream" that the other answers here are not getting at, namely to refer to the parent-child relationship of commits within a repo. Scott Chacon in the Pro Git book is particularly prone to this, and the results are unfortunate. Do not imitate this way of speaking. For example, he says of a merge resulting a fast-forward that this happens because
He wants to say that commit B is the only child of the only child of ... of the only child of commit A, so to merge B into A it is sufficient to move the ref A to point to commit B. Why this direction should be called "upstream" rather than "downstream", or why the geometry of such a pure straight-line graph should be described "directly upstream", is completely unclear and probably arbitrary. (The man page for Indeed, Chacon himself appears to use "downstream" later to mean exactly the same thing, when he speaks of rewriting all child commits of a deleted commit:
Basically he seems not to have any clear idea what he means by "upstream" and "downstream" when referring to the history of commits over time. This use is informal, then, and not to be encouraged, as it is just confusing. It is perfectly clear that every commit (except one) has at least one parent, and that parents of parents are thus ancestors; and in the other direction, commits have children and descendants. That's accepted terminology, and describes the directionality of the graph unambiguously, so that's the way to talk when you want to describe how commits relate to one another within the graph geometry of a repo. Do not use "upstream" or "downstream" loosely in this situation. [Additional note: I've been thinking about the relationship between the first Chacon sentence I cite above and the |
||||
|
|
