openshift git não está funcionando

1

Eu fiz upload de código para o meu servidor openshift JBoss antes, mas quando eu carrego algum código hoje não há alterações quando abro a página no navegador. Quando eu uso o git eu uso estes comandos:

git add . --all
git commit -m "newcomment2"
git push

quando uso git show , obtenho uma resposta estranha:

error: cannot run pager: No such file or directory
commit 3e1a0025bf9746fdb1e0329819f7cf79e3e8f8e4
Author: root <[email protected]>
Date:   Wed Oct 8 16:02:17 2014 -0400

newbloke2

diff --git a/upload.sh b/upload.sh
deleted file mode 100755
index 606b8af..0000000
--- a/upload.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-git add . --all
-git commit -m "newbloke2"
-git push
\ No newline at end of file

Deve haver muitos outros arquivos no servidor, ele está mostrando apenas um, que é um script SH que eu fiz, mas queria excluir.

    
por user2498595 09.10.2014 / 01:39

1 resposta

2

Isso pode ser o resultado da configuração de pager no seu global .gitconfig.

Você pode defini-lo usando o parâmetro GIT_PAGER=cat .

Como mencionado em resposta do stackoverflow Ignacio Vazquez-Abrams você também pode configurá-lo para não usar um pager:

git --no-pager show

Como alternativa, você pode usar o argumento -p para paginar usando less .

por exemplo, git -p show

Para ver as configurações de git , use:

git config --list

Em seguida, verifique a configuração core.pager .

git_config man page

core.pager
           The command that git will use to paginate output. Can be overridden with the GIT_PAGER environment variable. Note that git sets the LESS environment variable to FRSX if it
           is unset when it runs the pager. One can change these settings by setting the LESS variable to some other value. Alternately, these settings can be overridden on a project
           or global basis by setting the core.pager option. Setting core.pager has no affect on the LESS environment variable behaviour above, so if you want to override git’s default
           settings this way, you need to be explicit. For example, to disable the S option in a backward compatible manner, set core.pager to less -+$LESS -FRX. This will be passed to
           the shell by git, which will translate the final command to LESS=FRSX less -+FRSX -FRX.
    
por 09.10.2014 / 10:33