git

A collection of 3 posts

git

heroku about file extension case sensitive

許多人對於檔案附檔名甚至是檔名命名方式常有不同習慣,甚至是因為不小心,導致附檔名有大小寫區分。最常見的就是 file1.jpg, file2.JPG, file3.png, file5.PNG。 最近在使用 heroku 上就遇到有關大小寫的問題,會有幾個狀況發生: 在網址的附檔名上有大小寫區分 瀏覽器的 cache 也會有 git 也有此問題 最基本的作法就是將所有檔名與附檔名都改為小寫,這邊可以使用指令完成 rename 'y/A-Z/a-z/' * 但若是 MAC 或是 Windows 這種 case-insensitive(大小寫沒差)的系統,需要加上參數 -f rename -f 'y/A-Z/a-z/

  • hothero
    hothero
remote

How To Create a Remote Shared Git Repository

本文參考、翻譯此篇文章。 這篇文章著重在如何建立一個私人(private)且可透過SSH遠端控制、分享(remote, shared)的Git Repository,而非講解什麼是Git和怎麼使用,環境是Ubuntu 10.10 & 10.04。 Step 1: Preparation & Accounts Setup 假設我們有一個小型開發團隊,成員有:John, Andrew & Robert。首先要幫他們創建帳號,並加到開發者(developers)的群組內 $ sudo groupadd developers $ sudo useradd -G developers -d /home/john -m

  • hothero
    hothero
You've successfully subscribed to hothero's TechNote!