linux学习记录.5.git & github

Posted Protogenoi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux学习记录.5.git & github相关的知识,希望对你有一定的参考价值。

参考

https://www.linuxidc.com/Linux/2016-11/136769.htm

安装

安装 Git:   apt-get install git

查看当前版本:  git --version

配置git

$ git config --global user.name "Your Name"
$ git config --global user.email "Your Email Address"

查看配置信息:  git config --list

创建本地repository

git init [..]

添加文件到暂存:  git add [..]

  git add -A   添加所以有文件

提交到repository :  git commit -m "注释"

查看未提交的文件:  git status

比较修改未提交的文件:  git diff [..]

查看提交log:   git log [--pretty=oneline]

版本回退:   git reset --hard HEAD^[~n]

删除:   rm [..]   后需要commit

github

创建SSH Key:  ssh-keygen  -t rsa –C “[email protected]

登陆github,添加ssh key,保存!建立respository

连接本地:  git remote add origin https://github.com/RainbowMarquee/myvscodetest.git
上传到github,推送到master分支:   git push -u origin master

上传:    git push origin [branch name]

下拉:    git pull origin [branch name]

隆到本地:   git clone [链接]

分支

查看分支:git branch

创建分支:git branch name

切换分支:git checkout name

创建+切换分支:git checkout –b name

合并某分支到当前分支:git merge name

删除分支:git branch –d name

 



以上是关于linux学习记录.5.git & github的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu系统使用记录

linux上搭建git服务器之5(git服务器)

Git从青铜到王者第二篇:Git的初始

git了解

入门学习Linux&&Git命令大集合

入门学习Linux&&Git命令大集合