1.远程仓库的使用(github)

Posted android-it

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.远程仓库的使用(github)相关的知识,希望对你有一定的参考价值。

1.登录Github,新建一个仓库(远程仓库)

(1)使用Github账号密码登录

(2)点击+旁边的小三角,选择new repository--输入repository name--点击create repository成功创建远程仓库

(3)完成后页面显示仓库地址

技术分享图片

 

2.在本地使用git clone把远程仓库的项目克隆下来

(1)在本地任意位置,右键--Git Bash Her--git clone--https://github.com/XX/Demo.git

3.在本地新建一个text文本,使用命令提交到Github远程仓库

(1)本地任意新建一个read.txt,任意输入内容

(2)git add read.txt   

         git commit -m "XXX"(XX输入内容是备注)   

         git remote add origin [email protected]:XXX/learnGitup.git  

        git push -u origin master

4.在远程仓库创建一个文件,在本地pull

(1)在远程仓库Github上--create new file ,创建一个Main.java文本

(2)在本地右键--Git Bash Here--git pull,即远程仓库新建的Main.java文本,在本地即可看到

5.删除远程仓库的方法

(1)选中删除的项目--Setting -- Delete this repository--在弹窗中输入选中项目的名称--点击删除

以上是关于1.远程仓库的使用(github)的主要内容,如果未能解决你的问题,请参考以下文章

github 新建远程仓库 及 删除远程仓库

git 本地仓库同时推送到多个远程仓库

Git远程仓库—Github

使用Git将本地仓库与GitHub远程仓库相关联

git提交代码到远程仓库github

Git - 5.远程仓库