Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 727 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 727 Bytes

Console Chess

Console Chess game written in a few days.
Screenshot

Can be compiled with any C++14 and up compliant compiler

Cloning project

  • Write the code below into your terminal or console:
       git clone https://github.com/VladDoc/Console-Chess 
  • Compile
       cd build
       cmake ..
       make -j
  • Run
    ./chess

Editing project

  • Create new branch with git checkout -b new_feature, edit files and push them into repo
  • Edits in master will be removed

Useful aliases

alias.new=!git checkout master && git pull --ff-only origin master && git checkout -b