-1

I have 2 remotes: origin and bit and local repository. I want to pull from origin branch develop to local, and then from local push it to remote bit but branch develop2. I've tried:

git switch develop
git pull origin 
git push bit develop2

How to do it???

simoN
  • 65
  • 2
  • 12

1 Answers1

0

I think i get it done by:

git push bit develop:develop2

simoN
  • 65
  • 2
  • 12