标签:
• git remote add origin git@github.com:myaccount/myproject.git
• git push -u origin master
• git init--------建立repository
• git 命令 --help-----------查看帮助命令
• touch filename
• git status------查看状态
• git add filename--------加入文件到临时的东东
• git commit -m "add the file filename" -----commit到repository中
• git log------查看日志
• echo "ddd" > filename ------修改filename(先清空)
• git add filename
• git commit -m "filename changed"
• git diff 版本一 版本二--------比较不同
• git reset 版本号--------返回到版本号
• git revert 版本号--------撤销到版本号
• git checkout filename------撤销当下没有git add的动作
• git branch-------参看分支信息
• git branch develop-----建立分支
• git checkout develop-----切换分支
git merge develop------合并分支(将develop merge到master上,develop不变)
提交到github仓库
-- git add . //指的是把所有文件 添加到本地repository
-- git commit -m "test" //这里是添加commit的message
-- git push origin master //origin指的是remote 远端地址, master 指的是你的分支。
http://help.github.com/mac-set-up-git/
标签:
原文地址:http://www.cnblogs.com/oceanden/p/4546909.html