git学习记录
git config --list --global: 查看用户名和密码:
ls -a: 显示当前目录下的所有文件:
git reflog: 获取所有提交操作的版本号
git reset --hard “版本号”: 退回到该版本号的状态
git status: 查看提交状态
rm "文件名": 删除文件
git add .: 添加所有修改
git commit -m "注释": 提交修改
touch "文件名": 创建文件
git branch: 查看分支
git branch name: 创建分支
git checkout name: 切换分支
git checkout –b name: 创建并切换到该分支
git merge name: 合并分支
git branch –d name: 删除分支
git clone "地址": 将远程仓库内容克隆到本地
git push: 将本地更新推送到远程仓库
将远程仓库的更新下载到本地:(git fetch 然后 git merge) 或者(git fetch 仓库名/分支 然后 git merge 仓库名/分支)
将本地仓库更新推送到远程仓库:git push
最后推荐两个不错的博客:
http://www.cnblogs.com/tugenhua0707/p/4050072.html
http://www.360doc.com/content/13/0814/10/9171956_307028720.shtml