0

Can I clone different branch to different folder in my local computer in github ?

And can I see notification if any contributor request a pull to master branch or my branch

Cœur
  • 37,241
  • 25
  • 195
  • 267
  • Please be clearer in your question using correct formatting, spelling, tags. I recommend reading: [How to Ask](http://stackoverflow.com/help/how-to-ask) – Harmelodic Mar 26 '16 at 16:43

1 Answers1

0

Create a new firectory and clone the project to the new folder.

You will have to pull/push every change to synchronized them both.

In git 2.5 and above you can use worktree

git worktree add second_path

And now the two psth share the same repo.

CodeWizard
  • 128,036
  • 21
  • 144
  • 167