首页 > 代码库 > Git使用
Git使用
使用git将代码上传至github
1、在github中创建一个Repository
2、在setting的deploy中粘贴本地生成的id_rsa.pub
3、测试ssh远程连接是否成功:
ssh -T git@github.com
提示:‘You’ve successfully authenticated, but GitHub does not provide shell access‘ 说明连接成功。
4、安装git本地客户端:
使用homebrew工具安装
1)安装homebrew:(homebrew官网:http://brew.sh/)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2)安装git:
brew install git
5、建立本地git仓库:
在本地项目根目录下:
git init
6、将项目所有文件添加到待上传文件列表中:
git add .
若只想添加某一个文件,只需将.换成相应文件名。
7、设置全局用户和邮箱:
git config --global user.email "ahaii@sina.com" git config --global user.name "ahaii"
8、将文件commit到仓库:
git commit -m ‘描述‘
9、本地仓库关联github:
去github上新创建的repository中复制ssh地址(https://github.com/ahaii/....git)。
git remote add origin https://github.com/ahaii/testblog.git
10、上传代码到github:
git push -u origin master
会要求输入github的用户名和密码。
以上就是将本地代码上传到github的过程。
Git使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。