简易的命令行入门教程:
Git 全局设置:
git config --global user.name "soymilk" git config --global user.email "[email protected]"
创建 git 仓库:
mkdir hellogit cd hellogit git init touch README.md git add README.md git commit -m "first commit" git remote add origin [email protected]:soymilk2019/hellogit.git git push -u origin "master"
已有仓库?
cd existing_git_repo git remote add origin [email protected]:soymilk2019/hellogit.git git push -u origin "master"
标签:origin,git,入门,global,hellogit,add,com From: https://www.cnblogs.com/soymilk2019/p/17088897.html