标签:git reset ast log https 修改 记录 glob 学习 code
参考
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 “youremail@example.com”
登陆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
标签:git reset ast log https 修改 记录 glob 学习 code
原文地址:https://www.cnblogs.com/protogenoi/p/9116032.html