Quicksetup

Git版本管理

簡介

安裝

命令

GitHub

GoogleCode

TortoiseGit

訊息

相關網站

參考文獻

最新修改

簡體版

English

We recommend every repository include a README, LICENSE, and .gitignore.

Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/programmermagazine/201302.git
git push -u origin master

Push an existing repository from the command line

git remote add origin https://github.com/programmermagazine/201302.git
git push -u origin master

Facebook

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License