所以我試圖爲我的點文件創建符號鏈接(這樣我可以有一個集中的dotfiles存儲庫),但每次我這樣做時,iTerm都不會讀取符號鏈接的文件。基本上,我不會訪問任何別名或其他配置。無法獲得符號鏈接爲點文件工作
我相信我正確地放置在主目錄和鏈接的實際文件存儲庫中的位置與符號鏈接的文件:
ln -s ~/.dot_file ~/Google\ Drive/Developer/git\ repositories/dotfiles/dot_file
我也試着做相反的方式,但隨後存儲庫沒有鏈接中文件的內容。又名:
touch ~/Google\ Drive/Developer/git\ repositories/dotfiles/dot_file
mv .dot_file ~/Google\ Drive/Developer/git\ repositories/dotfiles/dot_file
cd ~/Google\ Drive/Developer/git\ repositories/dotfiles
ln -s dot_file ~/.dot_file
我參考了這些文章。
- How to use Github to manage dotfiles?
- Using bash to automate dotfiles
- Using find on subdirectories and create symlinks to all files
- Symlinks not working when link is made in another directory?
請幫助! :)
只是在同一頁上,'ln -s REAL_FILE LINK',這是參數順序,你似乎把它顛倒過來。 –