To revert a Git repository to a previous commit in two ways, one is Temporarily switch to a different commit and another one is Hard delete unpublished commits.

Continue Reading...

​If you want To undo the most recent local commits in Git, you can use the "git reset" option git command followed by the name of the commit that you want to revert back to.

Continue Reading...

To recover a dropped stash in Git, you can use the git stash apply command with the --index option and the name of the stash.

Continue Reading...

The git push command uploads local repository content to a remote repository. The git commit command saves the repository changes in local machine but not remote repository. By contrast Git push then updated the git commit changes and sends it to remote repository. It helps the developers for access them.

Continue Reading...

Git clone command approaches the repository through a remote URL. It accesses the repository through a remote URL. Generally, the primary repository is located in a remote server, frequently from a Git service like GitHub, Bitbucket, or GitLab. The remote repository URL is mentioned to the source.

Continue Reading...

This post will explain how to upgrade Git Plugin in your Jenkins due to impact of store XSS attacks and how to resolve stored XSS vulnerabilities.

Continue Reading...

For my new project, when use the yarn command for managing JavaScript packages. Its necessary to add a very specific version of that particular package from the GitHub or Bitbucket repository. The below steps are to know you how to add a package from the repository using YARN. The commands are very useful to find it&perio

Continue Reading...