Answers for "cdn boot"

19

roll back last commit in git

git reset --soft HEAD~1
Posted by: Guest on March-30-2020
1

revert last commit git

$ git commit -m "Something terribly misguided" # (0: Your Accident)
$ git reset HEAD~                              # (1)
[ edit files as necessary ]                    # (2)
$ git add .                                    # (3)
$ git commit -c ORIG_HEAD                      # (4)
Posted by: Guest on February-15-2021
199

bootstrap cdn

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
Posted by: Guest on February-09-2020

Browse Popular Code Answers by Language