$ git config --global user.email "git_prod@bagi66.ru "
$ git config --global user.name "git_bagi66_prod"
$ git config --global --list
user.email=git_prod@bagi66.ru
user.name=git_bagi66_prod
$ git config core.filemode false
$ git status
On branch master
Your branch is ahead of 'origin/master' by 13 commits.
(use "git push" to publish your local commits)

nothing to commit, working tree clean
$ git add --all
$ git commit -m "Changes on production"
On branch master
Your branch is ahead of 'origin/master' by 13 commits.
(use "git push" to publish your local commits)

nothing to commit, working tree clean
$ git pull origin master
git@gitlab.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
$ git checkout --theirs .
Updated 0 paths from the index
$ git commit -am "Remote Conflict"
On branch master
Your branch is ahead of 'origin/master' by 13 commits.
(use "git push" to publish your local commits)

nothing to commit, working tree clean
$ git push origin master
git@gitlab.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
$ git fetch -p
git@gitlab.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.