Implementation of the game battleship.
Before contributing, ensure the following:
You are part of the organization and have been added to the specific team for this project. If you need to be added contact a project manager in discord or during a meeting.
You have the following tools installed on your system:
- CMake
- Make
- A C++ compiler (e.g., GCC, Clang, or MSVC)
- Assign an issue to yourself and move it to In Progress. This is done in the BattleShip Project page not the repository page.
- Clone the repository:
git clone https://github.com/ZipCode-UA/BattleShip cd ./Battleship - Create and switch to a new branch for your issue:
git checkout -b <branchName>
- Push your new branch to GitHub:
git push --set-upstream origin <branchName>
- Create a build directory and configure the project:
mkdir build cd build cmake -G "<Your build tool, e.g. 'MinGW Makefiles'>" ..
- Build the project:
make
- Make your changes locally.
- Test your changes by running the program to confirm basic functionality.
- Commit your changes:
git commit -am "<Describe what you changed>" - Push your changes:
git push
- When your changes are ready, open a Pull Request on GitHub:
- Go to the Pull Requests tab.
- Click New Pull Request.
- Select your branch as the compare branch.
Note: Contributors must be members of the organization and added to the appropriate team to access this repository.