在服务器centos上新建git仓库
如我是在/root/git下新建一个pytest的库,以下方法访问路径不同
在git目录下mkdir pytest,然后再cd pytest 再git init 那么需要用 git clone root@kecq.com:/root/git/pytest/.git/ 最后一个/可以不加
因为我们的访问路径一般为xxx.git 那么在git目录下mkdir pytest.git 然后再cd pytest.git 再git init 那么可以用git clone root@kecq.com:/root/git/pytest.git/ 最后一个/可以不加
但windows 上推送的时候报! [remote rejected] master -> master (branch is currently checked out)这是因为git默认拒绝了push操作
有以下三种方法
一: 执行git config receive.denyCurrentBranch ignore
二:
.git/config中添加
[receive]
denyCurrentBranch = ignore
三:初始化的时候用 git --bare init