Skip to content

Latest commit

 

History

History
152 lines (96 loc) · 2.14 KB

README.md

File metadata and controls

152 lines (96 loc) · 2.14 KB

« Docs

Tools

All the tools used to make the dev team work faster and more comfortable.

Table of Contents

  1. Infra
    1. infrastructure
    2. start
    3. stop
  2. Git
    1. pull
    2. push
    3. fetch upstream

Infra

↑ Back to top

The project's infraestructure utilities

infrastructure

↑ To the section

Moves to the desired directory

Execute on Windows

From the cmd or powershell

tools/windows/infra/infrastructure.bat

Execute on Linux

From the bash or shell

./tools/linux/infra/infrastructure.sh

start

↑ To the section

Starts the Docker-Compose

Execute on Windows

From the cmd or powershell

tools/windows/infra/start.bat

Execute on Linux

From the bash or shell

./tools/linux/infra/start.sh

stop

↑ To the section

Shuts down the Docker-Compose

Execute on Windows

From the cmd or powershell

tools/windows/infra/stop.bat

Execute on Linux

From the bash or shell

./tools/linux/infra/stop.sh

Git

↑ Back to top

Some git utilities. The descriptions will ignore the merge conflicts as for now

pull

↑ To the section

Updates the local files with the changes in remote

Execute on Windows

From the cmd or powershell

tools/windows/git/pull.bat

Execute on Linux

From the bash or shell

./tools/linux/pull.sh

push

↑ To the section

Updates the remote files with the changes in local

Execute on Windows

From the cmd or powershell

tools/windows/git/push.bat

Execute on Linux

From the bash or shell

./tools/linux/push.sh

fetch upstream

↑ To the section

Updates both the local and remote files in the local, remote and fork's origin

Execute on Windows

From the cmd or powershell

tools/windows/git/fetch upstream.bat

Execute on Linux

From the bash or shell

./tools/linux/fetch upstream.sh