标签:git add color pre 提交 本地仓库 push 目录 http remote
git init -- 初始化git仓库 git add . --添加当前目录的文件到本地git仓库 git commit -m "my first commit" --提交更改到本地仓库 git remote add origin https://xxxxxxx/xxx.git --添加远程git仓库 git push -u origin master --提交代码到远程master分支
标签:git add color pre 提交 本地仓库 push 目录 http remote
原文地址:http://www.cnblogs.com/gaocong/p/6047006.html