Exercise
Task 1
- Create a new directory named
my-first-repo - Goto
my-first-repoand initialize a new git repo. - Create two empty files files named
READMEandLICENSE. -
Commit both files to
masterbranch. -
Create a branch named
feature-1. -
Create a new python file named
main.pywith following content:print('Hello World') -
Create a new repo in Github.
- Attach Github repo with local repo.
- Push
masterbranch to Github - Push
feature-1branch to Github - Create a pull request from
feature-1tomaster.