1. 创建新用户
useradd tesla
2. 修改密码
passwd tesla
3. 修改/etc/sudoers
找到 root ALL=(ALL) ALL
插入 tesla ALL=(ALL) ALL
4. 创建文件夹
mkdir /home/tesla/teslaRepo
5. chown tesla:tesla /teslaRepo/
6. 创建git仓库
cd /home/tesla/teslaRepo
sudo git --bare init
7. 测试代码库
mkdir teslaRepo
cd teslaRepo/
git init -> info: Initialized empty Git repository in /Users/okay/Desktop/git/teslaRepo/.git/
git remote add origin tesla@123.57.159.74:/teslaRepo/teslaProject.git
touch a.txt
git add a.txt
git commit -m "init commit"
git push origin master
git clone tesla@123.57.159.74:/teslaRepo/teslaProject.git
其他:
git remote get-url --all origin # 查看origin链接地址
来源:https://cloud.tencent.com/developer/article/1720664