2

我有一个 git 控制版本下的 nodejs 应用程序和一个用于管理这个的 git 帐户?

sudo adduser \
  --system \
  --shell /bin/bash \
  --gecos ‘User managing of git version control’ \
  --group \
  --disabled-password \
  --home /home/git \
  git

我应该在哪里存储 authorized_keys 文件

/home/git/authorized_keys

或者

/home/user/authorized_keys

用户是我服务器上的普通用户

4

2 回答 2

1

/home/git/.ssh/authorized_keys

检查此链接: http: //git-scm.com/book/ch4-4.html

于 2012-11-26T12:31:34.490 回答
1

该目录应位于:

/home/git/.ssh/authorized_keys
于 2012-11-26T12:32:42.510 回答