我的團隊有3人或5人。我們在當地工作。如何在我的fedora 16機器上安裝git以用作自己的git服務器?
,我們決定選擇在我的筆記本電腦,這樣其他人就可以檢查出的git服務器...
我已經試過這樣的事情:
mkdir gitexample
cd gitexample
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin [email protected]_ADDRESS_OF_SERVER:example.git
git push origin master
但是當我運行,直到:
git remote add origin [email protected]:example.git
git push origin master
我得到的消息:
[email protected]'s password:
fatal: 'example.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
有人知道如何在Fedora上安裝和配置它嗎? 192.168.1.15
是我的IP地址。
,當我運行:
[[email protected] .ssh]# ssh [email protected]
[email protected]'s password:
fatal: Interactive git shell is not enabled.
hint: ~/git-shell-commands should exist and have read and execute access.
Connection to 192.168.1.12 closed.
別的,使其工作?
你是否克隆了一個倉庫(如同光禿禿的)並將其命名爲'example.git'? –
我們該如何做到@dystroy。我是一個新手。 – sophie
'git clone --bare example.git',然後將創建的目錄移動到公共位置。 –