git - How to pull and push the changes from one local repository to another local repository using TortoiseGit -
how pull , push changes 1 local repository local repository using tortoisegit
eg: suppose developer1 has own local repository in machine , developer-2 has own local repository in machine.
how developer-2 pull/push changes developer-1 local repository using tortoisegit?
you have add remotes need , pull/push repo.
for example:
git remote add remote <url> git remote add remote2 <url> git checkout master // assume remote1 git pull remote2 master git push remote1/remote2 master
now can pull push between 2 repos.
Comments
Post a Comment