标签:git bash hub 信息 点击 push one git clone comm 本地
1.在自己的github账号下新建仓库--------得到github仓库地址
2.本地安装git---在将要克隆的文件夹下 右击点击Git Bash Here
3.输入命令
$ git clone "仓库地址" ----仓库克隆到本地
$ git status -------------查看修改状态
$ git add . -------------监控工作区的状态树,会把工作时的所有变化提交到暂存区,包括文件内容修改(modified)以及新文件(new),但不包括被删除的文件
$ git commit -m "修改的内容" -------------------提交文件注释信息
$ git push origin master ----------------推送到主线,将当前分支推送到origin主机的对应分支(多分支的还没有用,用后再总结)
注意:每次修改前先执行 $ git pull-----------------拉取github上的新项目
标签:git bash hub 信息 点击 push one git clone comm 本地
原文地址:http://www.cnblogs.com/sunhuinaxixi/p/git.html