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

git 学习整理

时间:2020-03-09 17:50:21      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:增加   hello   end   sof   com   gitignore   rem   远程   本地仓库   

1.git init   git初始化一个仓库
2、git add .  git增加所有文件
3、git add ‘hellogit.html‘   增加一个hellogit.html文件到缓存区
4、git checkout ‘hellogit.html‘ 从缓存区删除
5、git commit -m ‘hellogit.html‘ 从缓存区提取到本地仓库
6、 git reset head ‘hellogit.html‘  从本地仓库退回到缓存区
    git reset --soft head ‘hellogit.html‘ 退回到缓存区但不去掉代码
7、git diff hellogit.html 对比代码
8、 .gitignore 在项目的本地文件夹中新建文件,在文件中要不提交哪种文件就写*.tmp
 
9.git commit --amend  提交到上次你提交到地方,并且只生成一次记录
10.git branch -dev  创建分支
11、git chekout -dv  切换到哪一个分支
12、git merge -dev  合并分支
13、git push remote 推送到远程分支
 
 

git 学习整理

标签:增加   hello   end   sof   com   gitignore   rem   远程   本地仓库   

原文地址:https://www.cnblogs.com/luhuan860/p/12449855.html

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