Carry out the following :
- Fork this repository to your own account.
- Clone the repository to your computer.
$ git clone "https://www.github.com/{username}/learn-github"
- Move to the cloned Repository.
$ cd learn-github/
- Create a branch with your name
$ git branch {name}
- Go to your branch on your computer.
$ git checkout {name}
- Create a {name}.md file in the branch and introduce yourself in the file.
# Git Account
[{username}](https://www.github.com/{username})
- Stage your changes
$ git add .
- Commit your changes
$ git commit -m "{username}"
- Push your changes to Github
$ git push -u origin {branchname}
- Go to GitHub repository learn-github on your account Create a pull request to the repository.