用 Dropbox 做私有 Git 服务器

这几记录一下如何做一个本地版本库,关键命令是:git clone --bare test test.git

mkdir test
cd test
git init

# for Windows.
echo NUL > README
# for Unix-like.
touch README

git add .
git commit -m "first commit."

cd ..
git clone --bare test test.git

# for Windows.
mkdir "D:\My Dropbox\codes\repositories"
copy test.git "D:\My Dropbox\codes\repositories"
# for Unix-like
mkdir ~/Dropbox/codes/repositories
mv test.git ~/Dropbox/codes/repositories

cd test
# for Windows.
git remote add "file:///D:\My Dropbox\codes\repositories\test.git"
# for Unix-like.
git remote add origin file:///Users/{name}/Dropbox/codes/repositories/test.git

vi README
git add .
git commit -m "make changes."
git push origin master
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

延伸阅读

  1. 用dropbox做私有git服务器
  2. 方便而又强大:本地 Git 操作完全指南
  3. Hosting a Git Repo on Dropbox
  4. GitBox - Git repository hosting inside Dropbox folders @github
Help
[count]gg 跳转到第 [count] 行,默认第 1 行。
[count]G 跳转到第 [count] 行,默认最后一行。
[count]j 向下跳转 [count] 行,默认跳转一行。
[count]k 向上跳转 [count] 行,默认跳转一行。
/ 开始搜索。按 <Esc> 退出。
gh 跳转到首页。
gb 跳转到博客首页。
gw 跳转到 Wiki 首页。
gt 跳转到我的 Twitter Profile 页。
gp 跳转到我的 Github Profile 页。
? 打开帮助。按 <Esc> 退出。