git 使用教程
git 使用教程
初始化本地仓库
$ git init
配置仓库信息
$ git config --global user.mail "email@emailc.com"
$ git config --global user.name "name"
添加文件到暂存区时,忽略某些文件
$ touch .gitignore
$ echo "*.o" >> .gitignore
将文件添加到暂存区
$ git add .gitignore
提交暂存区的内容到仓库
$ git commit -m "add gitignore"
将hello.o从仓库中移除
$ git rm --cached hello.o
关联远程仓库
$ git remote add origin url
查看远程仓库
$ git remote -v
推送分支到远程仓库
$ git push orgin master
从远程仓库抓取分支
$ git pull origin master
显示分支信息并设置别名
$ git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
$ git config --global alias.loggpa "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
创建,切换,创建并切换,删除分支
$ git branch dev
$ git checkout dev
$ git checkout -b dev
$ git branch -d dev
回退到某个版本,回退到上一个版本
$ git reset --hard "commit ID"
$ git reset --hard HAED^
$ git reset --hard HEAD~1
查看git运行日志(用于回退某个版本,关电脑后。不能再回到未来的版本。通过commit ID)
$ git reflog
合并分支(需要切换到目标分支上)
$ git merge dev
移除仓库中的文件夹
$ git rm -r --cached test
ssh重新生成密钥对的私密
$ ssh-keygen -p -f ~/.ssh/id_ed25519
拒接合并无关历史
git pull origin master --allow-unrelated-histories
git使用代理
git config --global http.proxy http://127.0.0.1:8889