使用git建立遠端倉庫,讓別人git clone下來
關於git的基本使用我就不表,如有不熟的推薦看OurUnix的csdn部落格。所以這裡主要講下如何建立一個站在專案leader的角度,建立遠端倉庫。
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,大功告成,開始動手建立你的倉庫吧。
Ubuntu下測試ssh時使用ssh localhost 命令,出現錯誤提示connect to host localhost port 22:Connection refused
造成這個錯誤的原因可能是ssh-server未安裝或者未啟動。ubuntu 11.10 預設安裝openssh-client,但是木有安裝server
執行 ps -e | grep ssh,檢視是否有sshd程式
如果沒有,說明server沒啟動,通過 /etc/init.d/ssh -start 啟動server程式,如果提示ssh不存在 那麼就是沒安裝server
通過 sudo apt-get install openssh-server命令安裝即可
轉自:http://blog.sina.com.cn/s/blog_6405313801011vsj.html
相關文章
- Git 使用遠端倉庫Git
- git 遠端倉庫Git
- git倉庫修改遠端倉庫Git
- Git clone遠端分支Git
- git 從遠端倉庫指定分支clone程式碼到本地Git
- git-遠端倉庫Git
- Git Step by Step (6):Git遠端倉庫Git
- 使用GitBash從Git遠端倉庫下載程式碼Git
- Git Step by Step (7):Git遠端倉庫(續)Git
- git push到遠端倉庫Git
- git本地倉庫關聯遠端倉庫Git
- Git使用小技巧之多個遠端倉庫Git
- Git 系列教程(8)- 遠端倉庫的使用Git
- Git使用系列03-->Git倉庫建立Git
- git 本地push到遠端倉庫Git
- GIT切換遠端地址倉庫Git
- 如何修改 Git 遠端倉庫 URLGit
- git 修改本地倉庫的遠端倉庫地址Git
- 【git學習三】git基礎之git管理遠端倉庫Git
- 配置多個 Git 賬號來管理遠端倉庫Git
- Git 建立倉庫Git
- 本地倉庫推送到遠端倉庫的git操作Git
- git 入門教程之遠端倉庫Git
- git克隆遠端倉庫的指定分支Git
- 修改git遠端倉庫分支名稱Git
- Git remote 遠端倉庫連結管理GitREM
- git連線多個遠端倉庫Git
- git連線遠端倉庫的方式Git
- IDEA更改遠端git倉庫地址IdeaGit
- git 為已有工程建立git倉庫Git
- git 從遠端倉庫獲取所有分支Git
- 教你玩轉Git-提取遠端倉庫Git
- git push 到遠端倉庫提示Permission deniedGit
- git 上傳程式碼到遠端倉庫Git
- git clone倉儲問題Git
- 【Git】fork遠端倉庫,fork倉庫同步和提交pull requestGit
- git初始化--本地建立git倉庫Git
- 教你玩轉Git-刪除遠端倉庫Git