0

Can I pull one specific local commit(not pushed to central repo) from my teammate's local repository to mine??

I am only interested to take the changes with that particular commit.

1 Answers1

0

Assuming you and your teammate are using git, if he has a local commit that he wants to share with you, he can use git push --follow-tags. This will push the commit and all its ancestors to your repository, so make sure you're okay with that before running the command.

XPTO
  • 129
  • 2