-
Go to the website “https://startbootstrap.com”. Select the portfolio and resume option from the drop down menu named resume.
-
Select the resume template of your choice and download it.
-
Run the command “git push”.
-
There will be an error because the changes made in the server is not present in the remote. You have to first do a git pull, then git push.
-
To push it anyway i.e. forced push run the command “git push -f”.
-
Run the command “git log --oneline”. You can see all the commits being done previously.
-
To undo the commit, copy the #no. of that commit and run the command “git reset <commit #no.>”.
-
Run the command “git log”. It will show you all the commits with details you have done in the repository.
-
Run the command “git log --oneline”. It will show you all the commits excluding the details(in a much cleaner way), you have done in the repository.
-
To change the remote URL, run the command “ git remote set-url origin <HTTPS or SSH URL>”
(You can change HTTPS to SSH or vice versa) -
Check the updated URL.