$ git config --global user.email "bitrix@site.by "
$ git config --global user.name "git_newsite"
$ git config --global --list
user.email=bitrix@site.by
user.name=git_newsite
$ git config core.filemode false
$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 877 commits.
# (use "git push" to publish your local commits)
#
nothing to commit, working directory clean
$ git add --all
$ git commit -m "Changes on production"
# On branch master
# Your branch is ahead of 'origin/master' by 877 commits.
# (use "git push" to publish your local commits)
#
nothing to commit, working directory clean
$ git pull origin master
fatal: could not read Username for 'https://gitlab.dev-bitrix.by': No such device or address
$ git checkout --theirs .
$ git commit -am "Remote Conflict"
# On branch master
# Your branch is ahead of 'origin/master' by 877 commits.
# (use "git push" to publish your local commits)
#
nothing to commit, working directory clean
$ git push origin master
fatal: could not read Username for 'https://gitlab.dev-bitrix.by': No such device or address
$ touch execafterdeploy.php
$ cat execafterdeploy.php
$ git fetch -p
fatal: could not read Username for 'https://gitlab.dev-bitrix.by': No such device or address