命令行指引
Git 全局设置
git config --global user.name "xxxx" git config --global user.email "xxxxx@gmail.com"
创建一个新仓库
git clone http://36.221.227.35:9629/over/seas.git cd devops git switch -c main touch README.md git add README.md git commit -m "add README"
推送现有文件夹
cd existing_folder git init --initial-branch=main git remote add origin http://36.221.227.35:9629/over/seas.git git add . git commit -m "Initial commit"
推送现有的 Git 仓库
cd existing_repo git remote rename origin old-origin git remote add origin http://36.221.227.35:9629/over/seas.git