To undo a Git commit that was not pushed, you are given a few major options: Undo the commit but keep all changes staged Undo the commit and unstage the changes Undo the commit and lose all changes Method 1: Undo commit and keep all files staged In case you…
Recently, we were working on a project that had committed in the source code a configuration file. That configuration file had hard-coded the production system values, so we had to modify them to the development system values before using it. To avoid committing the configuration file with the development parameters…
Some times, even if you haven't added some files to the repository, git seems to monitor them even after you add them to the .gitignore file. This is a caching issue that can occur and to fix it, you need to clear your cache. NOTE : Before proceeding with this…