jeff
jeff

Reputation: 13643

Are remote addresses pushed in Git?

When I'm working on a Git project, I clone the repo from Github, then add a remote: git remote add bitbucket https://[email protected]/foo/bar.git then I commit and push to both origin and bitbucket. Is the new remote also saved in Github? Will the other users see that I have added a new remote? Or is it just stored locally?

Thanks,

Upvotes: 4

Views: 71

Answers (3)

snoopy
snoopy

Reputation: 318

No, they are not. The git remotes are not a part of the git repository, and are only stored locally inside the .git folder.

Upvotes: 4

Elmar Peise
Elmar Peise

Reputation: 15413

Which remotes are used for your copy of a repository is not part of the repository itself and thus not pushed. Note that the remotes can also be local or on private networks.

Upvotes: 4

yorammi
yorammi

Reputation: 6458

No, the remotes settings are locally inside your .git folder and are not pushed back to any of the remotes you've set

Upvotes: 3

Related Questions