How to stash git changes using Katalon studio?

my understanding is, Katalon uses Eclipse’s feature in terms of git integration. How do I stash my changes in local branch ? I do not find that feature in Katalon

1 Like

Eclipse provides “Git repository view” where you can use git stash. See the following article:

https://www.vogella.com/tutorials/EclipseGit/article.html#stash-via-the-git-repository-view

On the other hand, Katalon Studio does not provide the “Git repository view”. Therefore, I suppose, you can not do git stash in Katalon Studio.

The git stash command is, in a sence, an advanced command. I suppose that Katalon developer thought that usual Katalon Studio users wouldn’t require git stash.

However, you can solve it. Install Git for Windows into your windows PC. You can do all git operations in the commandline. Open the “Git Bash” app, cd to the directory of your Katlaon project, and do $ git status, $ git log, … any git command you can execute.

2 Likes