- Donot make any changes in someone else folder.
- Create your own folder if new user
- Create branch before you push to master
git clone https://github.com/Code-with-ease/Hackerrank-Algorithms.git
then use
cd hackerrank_algorithm
git branch <username>
To merge in local master
git merge <branchname>
git add .
git commit -m "your message"
git push origin master
git stash
git pull origin master
git log
copy the hash commit hash code, atleast 1st 7 digits
git reset --hard <commit hash code>