### Running the Gate Proxy Source: https://github.com/minekube/gate-plugin-template/blob/main/README.md Command to build and run the Gate proxy using the Go runtime from the project root directory. ```Bash go run . ``` -------------------------------- ### Cloning the Forked Repository Source: https://github.com/minekube/gate-plugin-template/blob/main/README.md Command to clone your forked version of the Gate Plugin Template repository from GitHub. ```Bash git clone ``` -------------------------------- ### Creating a Feature Branch Source: https://github.com/minekube/gate-plugin-template/blob/main/README.md Command to create and switch to a new Git branch for developing a specific feature or fix. ```Bash git checkout -b feature/AmazingFeature ``` -------------------------------- ### Running Gate in Debug Mode Source: https://github.com/minekube/gate-plugin-template/blob/main/README.md Command to run the Gate proxy with the debug flag enabled, providing more verbose output for troubleshooting. ```Bash go run . -d ``` -------------------------------- ### Committing Changes Source: https://github.com/minekube/gate-plugin-template/blob/main/README.md Command to stage and commit changes to the current Git branch with a descriptive message. ```Bash git commit -m 'Add some AmazingFeature' ``` -------------------------------- ### Pushing Changes to Remote Source: https://github.com/minekube/gate-plugin-template/blob/main/README.md Command to push the committed changes from the local branch to the remote repository. ```Bash git push origin feat/AmazingFeature ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.