学习笔记 2016/1/27 how to use git

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习笔记 2016/1/27 how to use git相关的知识,希望对你有一定的参考价值。

how to use git (2)

建仓库添加文件以及commit的过程:

1.进入目标目录

2.git init 初始化仓库

3.git add <filename>  将文件加入staging area

4.git commit 提交commit

   git commit -m "Commit Message" 

之后修改commit过程循环上述过程3、4

 

Git diff:

git diff  比较当前工作目录和staging area

git diff --staged 比较staging area和last commit

 

Git branch

分支用于增加可能不适用的特性、改变语言....等

可用命令:

git branch 查看分支

git branch <branchName> 创建新的分支

git checkout <branchName> 切换到分支

以上是关于学习笔记 2016/1/27 how to use git的主要内容,如果未能解决你的问题,请参考以下文章

Coursera_Learn how to learn笔记

[An Introduction to GCC 学习笔记] 15 How the compiler works, Identifying files

[An Introduction to GCC 学习笔记] 15 How the compiler works, Identifying files

掌握真正科学的学习方法——学会如何学习(Learning How to Learn)课程笔记

掌握真正科学的学习方法——学会如何学习(Learning How to Learn)课程笔记

掌握真正科学的学习方法——学会如何学习(Learning How to Learn)课程笔记