整个过程如下(Linux):
- 建立GitHub账户,开源空间免费
- 创建ssh连接
- $cd ~/.ssh
- $ssh-keygen -t rsa -C "your_email@youremail.com"
- 使用默认密钥文件名
- 输入passphrase
- $ssh-add ~/.ssh/id_rsa
- $vi ~/.ssh/id_rsa.pub
- 在GitHub用户管理页面中加入公共密钥(id_rsa.pub的内容)
- 测试连接,$ssh git@github.com
- 在github用户,Dashboard页面,点击“New Repository”创建新的项目,比如FileSync
- 配置git
- git config --global github.user "your username"
- git config --global user.email "your email"
- CheckIn代码
- $cd ~/${workspace}/FileSync
- $git init
- $git add README pom.xml ./src
- $git commit -m "initial commit"
- $git remote add origin git@github.com:user-name/FileSync.git
- $git push origin master
没有评论:
发表评论