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

git传输远程仓库

时间:2019-09-24 10:27:27      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:推送   mit   http   指定   nbsp   init   example   步骤   添加   

太久没用git了,都忘记了git怎么用了,正好最近在Linux学习中涉及到了相关的知识,这里把文件通过git上传到GitHub远程仓库的步骤记录一下

1.首先初始化仓库

git init

2.设置连接远程仓库SSH/HTTP连接路径(这个具体路径直接从GitHub上复制即可)

//查询连接路径信息
git remote -v
//添加连接路径
git remote add origin 路径名
//删除路径
git remote remove origin

3.配置用户信息

git config --global user.email "you@example.com"
git config --global user.name "Your Name"

4.将文件添加到索引

//所有文件加入到索引
git add .
//指定文件添加到索引
git add <file>..

5.确认提交状态

//-m后的为本次提交的备注文本
git commit -m "init file"

6.以master身份将信息推送到远程仓库

git push origin master

 

git传输远程仓库

标签:推送   mit   http   指定   nbsp   init   example   步骤   添加   

原文地址:https://www.cnblogs.com/wcxcc/p/11576737.html

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