
Git 全局设置
git config --global user.name "yangxu"
git config --global user.email "tuhooo@163.com"
创建一个新仓库
git clone ssh://git@192.168.1.100:8888/root/owner-vote-service.git
cd owner-vote-service
git switch -c main
touch README.md
git add README.md
git commit -m "add README"
git push -u origin main
推送现有文件夹
cd existing_folder
git init --initial-branch=main
git remote add origin ssh://git@192.168.1.100:8888/root/owner-vote-service.git
git add .
git commit -m "Initial commit"
git push -u origin main
推送现有的 Git 仓库
cd existing_repo
git remote rename origin old-origin
git remote add origin ssh://git@192.168.1.100:8888/root/owner-vote-service.git
git push -u origin --all
git push -u origin --tags
文章评论