iconDirEasy
Installation

Clone repository

Get the code to your local machine and start developing.

Git clone

Clone the repository using the following command:

Terminal
git clone git@github.com:focusapps/DirEasy/

If your SSH key isn't set up, use HTTPS instead:

Terminal
git clone https://github.com/focusapps/DirEasy

Use HTTPS for all commands if not using SSH

If you are not using SSH, ensure you switch to HTTPS for all Git commands, not just the clone command.

Git remote

After cloning the repository, remove the original origin remote:

Terminal
git remote rm origin

Add the upstream remote pointing to the original repository to pull updates:

Terminal
git remote add upstream https://github.com/focusapps/DirEasy

Once you have your own repository set up, add your repository as the origin:

Terminal
git remote add origin <your-repo-url>

Please turn off the actions in your repository, DirEasyhas a github action to upgrade the version, which is not necessary for your repository.

Commit and push

After making changes to your project, you can commit and push them to your repository:

Terminal
git commit -m "Your commit message"
git push origin main

and push them to your remote repository with:

Terminal
git push origin main

Check out the Git remote documentation for more information.

On this page