标签:工作 添加 远程仓库 代码 hub config git init div bsp
本地: --------> 远程仓库
--------- | --------代码库------------ -----------------------------
工作区 ----> 缓存区 ----> master分支 ----> GitHub
基本命令:
//1.进入到工程路径
cd 路径
//2.创建本地仓库
git init
//需要配置用户名
git config user.name "someone" git config user.email "someone@someplace.com"
//3.查看 缓存区状态(是否有东西)
git status
//4.将工作区全部文件添加到缓存区
git add . //注意空格
//5.将缓存区 提交到 master 分支
git commit
//6.查看是否关联了远程地址
git remote
//查看命令
git remote --help
//7.关联仓库地址
git remote add origin ‘github仓库地址‘
//8.远程提交master分支
git push origin master
标签:工作 添加 远程仓库 代码 hub config git init div bsp
原文地址:http://www.cnblogs.com/daxueshan/p/6891998.html