於 Linux 建置關於 GitHub 環境設定, 可參考此篇: GitHub 於 Linux 的環境設定
此篇紀錄如何開一個 Repository、Commit、Push 等步驟.
參考此文件: Create A Repo
建立自己的 Public Repository 步驟
- 連到 Github 首頁, 登入
- 於右邊下面 Your Repositories 右邊有個 New Repository
- 填寫好 Project name 等基本資料 -> "Create Repository" 即可.
Repository 建立並放入 Github 步驟
- mkdir config
- cd config
- git init
- touch README
- git add README
- git commit -m 'first commit'
- # git remote add origin git@github.com:tsung/config.git # 一般設定
- git remote add origin git@github:tsung/config.git # 若於 .ssh 有另外指定 Key, 就不能寫 github.com, 須寫 Alias name, ex: github
- git push -u origin master