繁难的命令行入门教程:
Git 全局设置:
git config --global user.name "刘凤贵"git config --global user.email "lfgemail@163.com"
创立 git 仓库:
mkdir springcurdcd springcurdgit init touch README.mdgit add README.mdgit commit -m "first commit"git remote add origin https://gitee.com/liufenggui/springcurd.gitgit push -u origin "master"
已有仓库?
cd existing_git_repogit remote add origin https://gitee.com/liufenggui/springcurd.gitgit push -u origin "master"
本文由mdnice多平台公布