Answers for "how to redirect to a page"

42

undo commit

# KEEP CHANGES
git reset --soft HEAD~1

# REMOVE CHANGES
git reset --hard HEAD~1
Posted by: Guest on April-07-2020
16

git undo commit

# Uncommit the changes
git reset --soft HEAD~1

# Completely delete the changes
git reset --hard HEAD~1
Posted by: Guest on September-04-2020
3

git reset to commit

# reset to specefic commit
git reset --hard <commit id>

# to go back one step 
git reset --hard HEAD~1

# note: use --soft to keep file changes
Posted by: Guest on March-05-2021
7

undo local commit

$ git reset --soft HEAD~1
Posted by: Guest on April-09-2020
5

git reset last commit

$ git reset --soft HEAD~1
Posted by: Guest on April-15-2020
0

git reset to latest commit

git reset --hard HEAD~0
will go to latest commit.


git reset --hard HEAD~1
will go to last but one commit.

Note:  Be careful while running this command. it can't be irreversible
Posted by: Guest on June-29-2021
1

html redirect

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Meta Tag</title>
      <meta http-equiv = "refresh" content = "2; url = https://www.tutorialspoint.com" />
   </head>
   <body>
      <p>Hello HTML5!</p>
   </body>
</html>
Posted by: Guest on June-07-2020
5

how to redirect a page to another url in html

<meta http-equiv="Refresh" content="0; url=https://www.w3docs.com" />
Posted by: Guest on April-10-2020
2

How do I redirect to another webpage

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";

// Another method for doing redirecting with JavaScript is this:
window.location = "https://stackoverflow.com";
Posted by: Guest on May-19-2020
2

html redirect to another page

<script>
  function foo() {
  	window.location.href = url
  }
</script>
Posted by: Guest on December-09-2020

Code answers related to "how to redirect to a page"

Code answers related to "Javascript"

Browse Popular Code Answers by Language