git-shell

git-shell - New repositories

僤鯓⒐⒋嵵緔 提交于 2019-12-20 15:17:25
问题 I have a server with a dedicated git user and repositories I'm trying to use the git-shell method to allow my devs to work on several projects. I'm about to change the shell of my git user to git-shell If I do that, I won't be able to connect with a standard shell anymore (that's the idea). Question : So how will I create new repositories ? Will I have each time to connect with a sudoer and create the repo then chown it ? 回答1: Will I have each time to connect with a sudoer and create the repo

Gitlab prompts for password while push for git user

丶灬走出姿态 提交于 2019-12-18 10:39:43
问题 I installed gitlab on my servers at linode. All services of gitlab are working fantastic. I am able to login, create users, repos etc. But the problem I am facing is when I try to push a repo it prompts a password for the git user as follows: git@gitlab.myserver.com's password I have followed the instructions of installing gitlab at: https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/installation.md and have disable the login got the user git using the following line mentioned in

Git shell prompts for password in an OpenSSH popup window

大兔子大兔子 提交于 2019-11-30 08:41:51
I don't know why, recently git shell asks me for credentials in an old-fashioned OpenSSH window (by the way, I use a https connection) instead of just prompting in the console. That prevents me to use the wincred, I always have to type my credentials. Quite annoying, esecially that when I make a typo, the console cursor disappears. How can I go back to the default mode? System: Windows 7 Console: ConEmu Thanks for help! Use $ git config --global core.askPass "" You can also set credentials in your config to prevent being prompted every time ( https://git-scm.com/docs/gitcredentials ). This

Gitlab prompts for password while push for git user

≯℡__Kan透↙ 提交于 2019-11-29 23:40:00
I installed gitlab on my servers at linode. All services of gitlab are working fantastic. I am able to login, create users, repos etc. But the problem I am facing is when I try to push a repo it prompts a password for the git user as follows: git@gitlab.myserver.com's password I have followed the instructions of installing gitlab at: https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/installation.md and have disable the login got the user git using the following line mentioned in the installation guide: sudo adduser --disabled-login --gecos 'GitLab' git I am using gitlab version 6.

Git shell prompts for password in an OpenSSH popup window

ε祈祈猫儿з 提交于 2019-11-29 11:34:20
问题 I don't know why, recently git shell asks me for credentials in an old-fashioned OpenSSH window (by the way, I use a https connection) instead of just prompting in the console. That prevents me to use the wincred, I always have to type my credentials. Quite annoying, esecially that when I make a typo, the console cursor disappears. How can I go back to the default mode? System: Windows 7 Console: ConEmu Thanks for help! 回答1: Use $ git config --global core.askPass "" You can also set

git-bash $PATH cannot parse windows directory with space

妖精的绣舞 提交于 2019-11-28 11:53:41
I would like to use git-bash come with github client on a windows 7 (32bit) machine. Somehow, the git-bash has already learned the $PATH variables from windows system PATH . However, I found the $PATH in git-bash did not parse the win system PATH with space correctly. for example the $PATH outputs: "..../c/Program: No such file or directory" Is there anyway to fix it? where is the git-bash script to construct the $PATH for git shell? Thanks Chris Hermut Why not using absolute path instead of relative path and if a folder of file name contains a space just use "" (quotes). Ex. cd C:/Users/"My

git-bash $PATH cannot parse windows directory with space

混江龙づ霸主 提交于 2019-11-27 06:34:58
问题 I would like to use git-bash come with github client on a windows 7 (32bit) machine. Somehow, the git-bash has already learned the $PATH variables from windows system PATH . However, I found the $PATH in git-bash did not parse the win system PATH with space correctly. for example the $PATH outputs: "..../c/Program: No such file or directory" Is there anyway to fix it? where is the git-bash script to construct the $PATH for git shell? Thanks 回答1: Why not using absolute path instead of relative