git学习笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git学习笔记相关的知识,希望对你有一定的参考价值。
1.在Linux或windows下安装git
2.注册github账号
3.创建repository
4.从github上clone项目到本地
5.在项目文件夹中创建新文件,并使用git status命令查看文件状态
新文件:Untracked files
新建空文件夹不会被归入Untracked files
6.使用git add命令将新文件添加到暂存区(staging),changes to be committed
使用git add 文件名,添加单个文件
使用git add -A ,添加所有文件
7.使用git commit将暂存区的文件提交到本地仓库,存储在一个新的地方
-m “说明”,使用-m参数,可以添加对提交的文件的说明
提交一次后使用git status 命令会看到your branch is ahead of ‘origin/master‘
8.使用git push 命令将本地提交推送到远程仓库
9.git pull 将远程仓库更新到本地
10.分支的合并管理
git rebase
git reset
11.github使用规范
先将github上的项目fork到个人github repository中,然后再clone到本地电脑
推送时先推送到个人github repository中,在pull request
http://www.ruanyifeng.com/blog/2015/08/git-use-process.html
https://linux.cn/article-8600-1.html
以上是关于git学习笔记的主要内容,如果未能解决你的问题,请参考以下文章