Skip to content

Version Control with Git

Original guide · All levels

With the version control options in Wappler you can create a Git repository for every Wappler project you wish to keep track on. Having a repository is great way to have a good backup of all your proj

With the version control options in Wappler you can create a Git repository for every Wappler project you wish to keep track on. Having a repository is great way to have a good backup of all your project files and their changes.


The Git Manager panel is located as a second option in the left bar
The Git Manager

When you want to add a repository for your current project, just click on the “create Repository” button

Creating a New Local Repository

You will immediately see a list of files from your project to commit to the repository. Initially thisse will be just all files from your project:

Just enter a nice log message about what you are committing and select the files.

Section titled “Just enter a nice log message about what you are committing and select the files.”

Now you will see that we have a new history entry with the message you entered, and no more files are to be committed:

Lets edit our main index.html and add something to it like the App Connect framework. After saving the file and refreshing the Git Manager, you will see that a bunch of new files have appeared and that the index.html is changed:

A - means new file is added M - means file is modified

Section titled “A - means new file is added M - means file is modified”

A - means new file is added
M - means file is modified

So lets commit this

After the commit you will see immediately that our history grows

Review history

Lets add some more, changes and commit them:
Step 11

As you can see every commit is now logged with a nice message

Section titled “As you can see every commit is now logged with a nice message”

The repository is stored locally in your project folder under the .git sub folder

In the file manager you can also see changed files that aren’t committed yet into the repository.
Integration with File Manager

If you like to undo your file changes, to the last commit version, you can just revert the file:

This will revert the whole file to the version you have lastly committed.

Section titled “This will revert the whole file to the version you have lastly committed.”