mkdir $(pwd)/.mcsgit init --bare $(pwd)/.mcsecho "alias mcs='/usr/bin/git --git-dir=$(pwd)/.mcs/ --work-tree=$(pwd)'" >> $HOME/.bashrcbashmcs config --local status.showUntrackedFiles no- create a new repository on GitHub (or any other Git server hosting service) but do NOT include a
README.mdor any other files such as a license mcs remote add origin https://github.com/<username>/<repository_name>.git
echo "alias mcs='/usr/bin/git --git-dir=$(pwd)/.mcs/ --work-tree=$(pwd)'" >> $HOME/.bashrcecho '.mcs' >> .gitignore
3a.git clone --bare https://github.com/<username>/<repository_name>.git $(pwd)/.mcs(general Minecraft server dotfiles repository)
3b.git clone --bare https://github.com/zahradnik-ondrej/mcs.git $(pwd)/.mcs(this Minecraft server dotfiles repository)bashmcs checkout -fmcs config --local status.showUntrackedFiles nobash