Question:
The Nautilus application development team was working on a git repository /usr/src/kodekloudrepos/news present on Storage server in Stratos DC.
However, they reported an issue with the recent commits being pushed to
this repo. They have asked the DevOps team to revert repo HEAD to last
commit. Below are more details about the task:
In
/usr/src/kodekloudrepos/newsgit repository, revert the latest commit( HEAD )to the previous commit (JFYI the previous commit hash should be withinitial commitmessage ).Use
revert newsmessage (please use all small letters for commit message) for the new revert commit.
Solution:
Login to storage server
ssh natasha@ststor01
Go to mentioned folder
cd usr/src/kodekloudrepos/news
sudo su
git log
Revert commit
git revert HEAD
git add .
git commit -m "revert news"
git log

0 comments:
Post a Comment