This repo is created as a homework practice for LinuxClub@UCU and is designed to demonstrate the git basics.
This task requries cowsay package to be installed:
- cowsay
pip install -u cowsay
- Create your own branch and add .gitignore file. It has to include .idea directory and all your other files which are not supposed to be present at remote repo. (E.g. files with credentials)
- Merge your branch with main.
- Create another branch to implement the random the algorithm to choose cowsay character. You can use random.choice for it. Hint: you have to modify get_character function.
- Create a pull request to merge your branch with main. Merge it on GitHub or using GitHub CLI
- Switch to branch
wardady_read_random_quote
. Rebase this branch, so it uses your latest added feature from main branch - choice of the character for cowsay. It is expected that during rebase some conflicts occur. You have to resolve them by yourself. - PR&merge your branch with main once done!