Git Flashcards
1
Q
How to create a branch from master?
A
$ git checkout -b iss53
its short hand for
~~~
$ git branch iss53
$ git checkout iss53
~~~
Programming > Git > Flashcards
How to create a branch from master?
$ git checkout -b iss53
its short hand for
~~~
$ git branch iss53
$ git checkout iss53
~~~