Imagine you’ve made a mistake, and committed something you didn’t intend to - maybe code that broke everything, or you added a file you didn’t intend to add. You can revert commits -
in GitKraken, try right clicking on the commit in the history panel. You’ll have to commit the revert - it doesn’t erase the
Sometimes there are files you don’t want to commit to your repository. Examples might be:
.DS_Store
file automatically generated on Mac systems,Such files can be excluded from showing up as modified if they are included in a .gitignore file,. More information about using .gitignore
.