Day72 - Notes
Day72 - Notes
Git Commands:
git --version
git init
3) Checkout a repository
git status
8) Generating the ssh key (Only required to establish secured connection between local machine and github)
ssh-keygen -t rsa
ssh -T [email protected]
9) Update the local code with the changes done at remote repository
git pull
git pull origin master
git stash
git log
git diff
git branch
git branch -a (Shows all the local and remote branches)
21) To find whether all the branches have been merged to master
Now recheck whether all the branches have been merged to master
git branch
git branch -a