一、生成 SSH 公钥
SSH key 可以让你的电脑和 git@OSC 之间建立安全的加密连接。
# 生成密钥shell> ssh-keygen -t rsa -C "you email"# 查看密钥shell> cat ~/.ssh/id_rsa.pub# ssh-rsa ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDKLxEKo4DHMAcYH3y3XyA8oaLvy6……you email#将密钥复制到 git@OSC
二、上传项目
shell> cd projectshell> git init .shell> git pull git@git.oschina.net:mechanic/project.git shell> git add -A .shell> git commit -am "代码注释"shell> git push git@git.oschina.net:mechanic/project.git master