博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用git建立远程仓库,让别人git clone下来
阅读量:5923 次
发布时间:2019-06-19

本文共 1316 字,大约阅读时间需要 4 分钟。

首先, 如果你的ssh没有安装的话,要安装ssh服务端。ubuntu是很简单

sudo apt-get install openssh-server
1,建立你的git 目录。

ourunix@ubuntu:~$ mkdir testgit

ourunix@ubuntu:~$ cd testgit/
2,建立你的git仓库。
ourunix@ubuntu:~/testgit$ git init
Initialized empty Git repository in /home/wlp/testgit/.git/
3,添加你的需要的项目初始文件,这里我就只添加一张文档了。
ourunix@ubuntu:~/testgit$ echo "hello,git" > sayhi.txt
4,跟踪及提交到仓库。
ourunix@ubuntu:~/testgit$ git add sayhi.txt
ourunix@ubuntu:~/testgit$ git commit -m "2011.4.13" sayhi.txt
[master (root-commit) b87b535] 2011.4.13
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 sayhi.txt
5.在本地的git仓库"添加一个远程仓库",当然这个远程仓库还是你自己的这个目录。
ourunix@ubuntu:~/testgit$ git remote add origin ssh://你的用户名@你的IP/~/testgit/.git
这时候,本地的 .git/config 应该会改变
6.将本地的 master分支 ,跟踪到远程的分支
ourunix@ubuntu:~/testgit$ git push origin master
7,显示远程信息
ourunix@ubuntu:~/testgit$git remote show origin
8,利用其他局域网的电脑测试你的仓库
ourunix@ubuntu:~/test$ git clone ssh://你的用户名@你的IP/home/~/testgit/.git
Initialized empty Git repository in /home/wlp/test/git/.git/
xxx‘s password:
remote: Counting objects: 3, done.
Receiving objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0)
9,大功告成
10. 修改远程分支地址
git remote set-url origin remote_git_address

http://blog.chinaunix.net/uid-22028680-id-3040436.html

 

转载于:https://www.cnblogs.com/softidea/p/6247442.html

你可能感兴趣的文章
centos6中iptables单机网络防火墙的使用
查看>>
剑指offer——面试题5:替换空格
查看>>
【我所理解的Cocos2d-x】第六章 精灵Sprite 读书笔记
查看>>
java面试题整理二(转灰灰+灰灰)
查看>>
Sequelize-nodejs-4-Model usage
查看>>
CSS3制作心形头像
查看>>
电子自旋
查看>>
虚拟环境virtualenv
查看>>
连续子数组的最大和
查看>>
把MacBook里的电影导入到iPad
查看>>
数据挖掘过程中:数据预处理
查看>>
JavaScript高级程序设计(第三版)学习笔记6、7章
查看>>
jQuery-DOM操作之创建、插入、删除元素
查看>>
POJ NOI MATH-7651 自来水供给
查看>>
七个错误可能引发网页布局灾难
查看>>
自定义训练的演示,使用tf-data,Eager Execution和keras
查看>>
VS常用快捷键
查看>>
REST接口
查看>>
线程的通讯
查看>>
JAVA网络编程Socket常见问题 【长连接专题】
查看>>