Steps :
- Go to my github account and create a repo called "PLPBasicGitAssignment"
- created a folder on my Desktop called "PLPBasicGitAssignment"
- On the command line navigate to my folder on the git bash command line. By cd PLPBasicGitAssignment
- on git bash run command git init
- Connect my local repo to my github repo. git remote add origin https://github.com/Alisonrajpal/PLPBasicGitAssignment
- on command line vi hello.txt
- Press i and then I type "Hello, Git!". After that press esc, followed by :wq and enter
- cat hello.txt. It displays what I wrote.
- vi README.md
- Press i and then type all the steps I did. Followed by esc button then :wq
- git add .
- git status. git commit -m "Assisgment uploaded"
- Lastly git push-u origin master