码迷,mamicode.com
首页 > 其他好文 > 详细

Git

时间:2017-08-07 20:39:46      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:add   用户信息   commit   config   ash   python   ref   git reset   file   

git

git init                  #初始化
git add manage.py         #提交单个文件
git add .                 #提交所有文件
git commit -m "all file"  #提交注释
git status                #状态
git ls-tree head          #查看版本中所有文件
git ls-files -s   查看暂存区和版本中所有文件
git log                   #查看日志
git reflog                #查看所有日志
#配置用户信息
git config --local user.name ‘名称‘
git config --local user.email ‘邮箱‘
#回滚
git log
git reset --head 2b349bf
#回滚
git reflog
git reset --head 2b349bf
#stash 
git stash   #将当前修改的内容保存到一个地方

  

Git

标签:add   用户信息   commit   config   ash   python   ref   git reset   file   

原文地址:http://www.cnblogs.com/oyoui/p/7300934.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!