第1步:创建SSH Key。在用户主目录下,看看有没有.ssh目录,如果有,再看看这个目录下有没有id_rsa和id_rsa.pub这两个文件,如果已经有了,可直接跳到下一步。如果没有,打开Shell(Windows下打开Git Bash),创建SSH Key:
$ ssh-keygen -t rsa -C "youremail@example.com"
注意:"youremail@example.com"
代表的是 你的 github
账号
第2步: 复制生成的 ssh-key
$ sudo apt-get install xclip
# Downloads and installs xclip. If you don't have `apt-get`, you might need to use another installer (like `yum`)
$ xclip -sel clip < ~/.ssh/id_rsa.pub
# Copies the contents of the id_rsa.pub file to your clipboard
如果 xclip
不工作的话,打开文件,手动复制。
第3步:登陆GitHub,打开“Account settings”,“SSH Keys”页面:
然后,点“Add SSH Key”,填上任意Title,在Key文本框里粘贴id_rsa.pub文件的内容(Ctrl+V
).
第四步: 点击 Add ssh key
git init # 初始化一个本地仓库
git add file1 file2 #向暂存区存储文件
git commit -m "discription" #将暂存区的文件提交到当前分支
## 删除文件
rm filename #从文件管理器中删除文件
git rm filename #从git的版本库中删除文件
git commit -m "Remove file" # 提交删除操作
git remote add origin your_repository #将本地库与远程库关联
#一旦关联之后,以后就是本地更改然后同步到远程库操作了
git push -u origin master #将本地更改同步到远程库
https://www.zhihu.com/question/21682976/answer/79489643这里有详细的介绍,不再赘述。
http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/001374385852170d9c7adf13c30429b9660d0eb689dd43a000 https://help.github.com/articles/connecting-to-github-with-ssh/