淡淡回忆 发表于 2017-6-5 10:52:58

Git总结笔记3-把本地仓库推送到github

  说明:此笔记在centos 7 上完成

1.配置公钥













# ssh-keygen -t rsa -C "kangvcar@126.com"
# cat .ssh/id_rsa.pub
  注意:在本地用ssh-keygen生成密钥对后,把公钥添加到github上

2.安装git服务













# yum -y install git

3.配置基本环境参数



# git config --global user.name "kangvcar"
# git config --global user.email "kangvcar@126.com"

4.创建本地仓库目录并初始化













# mkdir kangvcar   
# cd kangvcar/
# git init
# echo "ni hao kangvcar" >> test.txt
5.将项目的所有文件添加到仓库中,并commit














# git add .
# git commit -m "add test.txt"
6.到github上创建自己的Repository,名字可以不同


7.进入到新建的Repository,获取项目的地址
  如地址:git@github.com:kangvcar/kangvcar.git

8.将本地仓库与远程仓库关联













# git remote add origin git@github.com:kangvcar/kangvcar.git
9.将本地仓库推送到github上














# git push -u origin master
Warning: Permanently added the RSA host key for IP address '192.30.255.112' to the list of known hosts.
Counting objects: 3, done.
Writing objects: 100% (3/3), 222 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To git@github.com:kangvcar/kangvcar.git
*       master -> master
Branch master set up to track remote branch master from origin.

10.在github上就能看到推送的更新了
页: [1]
查看完整版本: Git总结笔记3-把本地仓库推送到github