@marlin
2016-08-13T13:01:46.000000Z
字数 1756
阅读 1461
git
git clone https://github.com/shakiba/svgexport.git
#将所有修改内容添加到提交列表
git add -A
git commit -m "提交时添加的注释"
git push
#在本地使用git rm命令删除该文件
git rm fileName.del
#之后就是commit+push
git commit -m "删除"
git push
#使用add命令将本地变更添加到暂存区
git add -u
#之后使用commit+push
git commit -m "删除"
git push
git status
ssh: connect to host github.com port 22: Connection timed out
此时主要是由于windows重启后禁用了22端口(查资料+个人猜测),解决方法:
git config --local -e
#change entry of
# url = git@github.com:username/repo.git
#to
# url = https://github.com/username/repo.git
这种解决方法在提交时会弹出登陆框,由于git已经使用ssh-keygen -t rsa -C "bianxu5555@126.com"
再进行登陆有点不舒服,可以采用如下方法:
#在~/.ssh/config文件中添加如下内容:
Host github.com
User bianxu5555@126.com
HostName ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
通过指定端口,不再使用22端口。
![]()
进行图片插入。举个例子![](http://latex.codecogs.com/png.latex?\\hat{r}_{ui})
展示成公式为:,需要注意的是:在github上\
一定要转义成\\
,3.其中的空格要替换成%20,左括号(要替换成%28,右括号)要替换成%29。