顯示具有 git 標籤的文章。 顯示所有文章
顯示具有 git 標籤的文章。 顯示所有文章

2018年9月11日 星期二

[Git] 101 剛好夠用的 Git 知識

Git 是現在最常用的版本控制工具(Version Control System, VCS),功能強大、指令繁多;但是對初學者而言,只需要學會 20% 的指令,就可以應付 80% 的狀況。

學習目標

  1. Git 安裝
  2. Git 基本概念
  3. 本機 Git 常用指令
  4. .gitignore 檔案

2014年6月26日 星期四

git入門學習資源整理


Local式版本控制:rcs
集中式版本控制系統:Subversion(SVN)
分散式版本控制系統:Git, Mercurial
網路資源

git 錯誤「fatal: could not read Password for ... 」 的解決方法


很多入門的文章都寫著可以用

git clone https://username@bitbucket.org/username/bb101repo.git

來clone自己的專案,但是如果真的這樣使用指令,又會出現

fatal: could not read Password for ‘https://bitbucket.org ‘: No such file or directory

解決方法,使用以下指令:

git clone https://username:password@bitbucket.org/username/bb101repo.git