@zifehng
2018-04-07T12:11:56.000000Z
字数 1303
阅读 1131
git
ubuntu默认下载源中git不是最新版本,执行以下操作以升级到最新版git
$ sudo add-apt-repository ppa:git-core/ppa
$ sudo apt-get update
$ sudo apt-get upgrade
$ ssh-keygen
生成的公钥文件为: ~/.ssh/id_rsa.pub
在github中添加公钥
进入github网站-》点击Settings-》点击SSH and GPG Keys-》点击New SSH key,将id_rsa.pub中的内容复制其中
克隆远程仓库
$ git clone git@github.com:zifehng/MarkDownPhotos.git
$ git config --global user.name "wangshusheng"
$ git config --global user.email "wangshusheng2016@foxmail.com"
$ git config --global color.ui true
$ git config --global core.editor "vim"
$ git config --global core.excludesfile ~/.gitignore_global
$ git reset --hard HEAD^
$ git reset --soft HEAD^
$ git reflog
$ git checkout --test.c
$ git reset HEAD test.c
$ git log --stat
$ git log -3
$ git log -p
$ git branch
$ git branch test
$ git branch -m test newtest
$ git checkout test
$ git checkout -b test
$ git merge test
$ git branch -d test
$ git stash
$ git stash pop
$ git stash list
$ git stash pop stash{3}
$ git remote add origin 192.168.1.101:sample.git
$ git branch -r
$ git fetch
$ git checkout -b local_test origin/test
$ git pull origin test:local_test
$ git push origin local_test:test