Git & GitHub
Git & GitHub ------------- 1. to display all the branches and your current branch ? git branch press enter 2.to create new branch ? git branch <branch name> git branch dev git branch new dev branch will be created automatically git branch ---display purpose 3.to modify branch name git branch -m <your branch name> git branch -m feature git branch ---display purpose 4.to switch from one branch to another branch git checkout <branch name> git checkout dev git branch ---display purpose display all the available branches in your repository and also your current branch * (star) symbol is always pointing to current branch to push the code how to setup alias name for your GitHub Remote Repository ========================================================= shortc...