码迷,mamicode.com
首页 > 其他好文 > 详细

初次使用git,记录使用步骤

时间:2018-03-11 02:41:01      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:master   添加   第一步   users   first   one   直接   string   git   

参考:https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000

https://gitee.com/oschina/git-osc/wikis/%E5%B8%AE%E5%8A%A9

 

第一步: 本地安装git客户端软件,https://git-scm.com/downloads/

第二步: 在本地电脑安装git客户端软件

第三步: 初始化git的全局设置:

git config --global user.name "byygyy"
git config --global user.email "lhh_nj@163.com"

第四步: 创建SSH Key。在用户主目录下,看看有没有.ssh目录,如果有,再看看这个目录下有没有id_rsaid_rsa.pub这两个文件,如果已经有了,可直接跳到下一步。如果没有,打开Shell(Windows下打开Git Bash),创建SSH Key:

 ssh-keygen -t rsa -C "youremail@example.com"

(将生成的公钥C:\Users\用户名\.ssh\id_rsa.pub的内容拷贝,登陆到github或者码云后,新建sshkey,name自己随便写,key就粘贴拷贝过来的公钥)

 

第五步:使用git bash跳转到项目的根目录,并初始化该项目:

git init

第六步:本地版本库添加文件并提交到远程git库:

git add README.md
git commit -m "first commit"
git remote add origin git@gitee.com:byygyy/testgit5.git
git push -u origin maste

以后如果本地的项目发生了变更:
git add filename
git commit -m "do some thing"
git push origin master



初次使用git,记录使用步骤

标签:master   添加   第一步   users   first   one   直接   string   git   

原文地址:https://www.cnblogs.com/lihuanhuan/p/8542775.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!