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

git使用

时间:2019-08-25 19:49:51      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:安装配置   git push   pull   连接   git   clone   config   div   origin   

原文引用https://www.dazhuanlan.com/2019/08/25/5d625c65cd50c/


2019-8-15

从git上克隆项目到本地

git clone url

连接远程仓库并提交代码到github

  • 配置用户名和邮箱
git config --global user.name "your name"
git config --global user.email "your email address"
  • 连接远程仓库
git remote add origin https://github.com/smilechenjia/vuepress.git
  • 创建空的本地仓库
git init 
  • 将项目所有文档添加到缓存中
git add .
  • 将缓存中的代码提交到本地仓库
git commit -m "注释"
  • 上传代码到远程库
git push --set-upstream origin master
  • 从仓库拉取代码到本地 cd 到文档夹
git pull origin master 

生成ssh key并添加到github

  • 生成公钥和私钥
ssh-keygen -t rsa -C "github用户名"
  • 查看公钥
cat ~/.ssh/id_rsa.pub
  • 添加ssh key 登陆github,依此点击头像->settings->new SSH

把新生成的公钥复制粘贴到这里

新建分支

git checkout -b branchname
git push origin branchname:branchname

删除分支

git push origin --delete branchname

git使用

标签:安装配置   git push   pull   连接   git   clone   config   div   origin   

原文地址:https://www.cnblogs.com/petewell/p/11408875.html

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