无论如何,我敢于启动 git repo,/
因为它只是安装在 8GB sd 卡上的 beaglebone black 上的 ARM ubuntu,我们将 ARM ubuntu 作为扇区到扇区的 SD 卡映像,所以我们不能选择 ZFS 或 BTRFS。我可以在任何 Linux 机器上安装 sd 卡并结帐分支。
cd /
sudo git init
sudo vi .gitignore
/dev/
/lost+found/
/media/
/mnt/
/opt/
/proc/
/run/
/srv/
/sys/
/tmp/
/var/log/
sudo git add -A
sudo du -sh .git
297M .git
git config --global user.name 'Your Name'
git config --global user.email you@somedomain.com
sudo git commit -m "initial update and network configured"
sudo du -sh .git
308M .git
请建议我可以忽略的文件夹或文件。我将继续使用忽略列表和我面临的问题来更新这个答案。
2013 年 7 月 18 日 21:59:00 IST
我的第一次结账给我留下了痛苦的经历。当我尝试检查以前的提交时,它引发了一些锁定失败。犯了一个错误,没有记下输出。
然后我从 beaglebone 中取出 SD 卡并安装在我的 Ubuntu 桌面上。它为每个分区提供了 2 个挂载点,/media/rootfs/
并且/media/boot/
. 我重新安装/media/boot/
了/media/rootfs/boot/uboot
,所以现在文件系统与在 BeagleBone 上启动的实时文件系统完全相似。
$ sudo cd /media/rootfs
$ sudo git log
commit 8bf5b7031bc1aee6392272da4eae2b808b46912f
Author: gowtham <gowtham@beaglebone>
Date: Thu Jul 18 12:04:05 2013 +0000
remotedevicecontroller with camcapture-compression option
commit 774765de36a0c3cc7280a29275c37928de982f6e
Author: gowtham <gowtham@beaglebone>
Date: Thu Jul 18 06:19:48 2013 +0000
before installing remotedevicecontroller with camcapture-compression
commit 19d5f3f66f29cbe925b8743c7248770d1f1d6ba4
Author: gowtham <gowtham@beaglebone>
Date: Wed Jul 17 13:34:33 2013 +0000
ffmpeg installed by remotedevicecontroller
commit 691c20afd7b166103dabc2561c72eb94c172e726
Author: gowtham <gowtham@beaglebone>
Date: Wed Jul 17 14:44:17 2013 +0000
initial update and network configured
$ sudo git stash
[sudo] password for gowtham:
fatal: Not a git repository (or any of the parent directories): .git
fatal: Not a git repository (or any of the parent directories): .git
fatal: Not a git repository (or any of the parent directories): .git
fatal: Not a git repository (or any of the parent directories): .git
fatal: Not a git repository (or any of the parent directories): .git
You do not have the initial commit yet
但.git/
存在于/media/rootfs/
. 在下面评论,我所做的错误。