文章目錄
- 1.set up git
- 2.create a repo
一、安裝git工具
在windows下使用git最好的軟體就是TortoiseGit,類似與TortoiseSVN小烏龜。
:https://code.google.com/p/tortoisegit/
安裝順序: recommended order: install TortoiseGit first
——先安裝TortoiseGit,再安裝msysgit
安裝完之後使用git bash.
git bash是Windows下的命令列工具。
基於msys GNU環境,有git分布式版本控制工具,也主要用於git。
二、關於git和github的一些概念
repository [ri'p?zit?ri] 知識庫,版本庫,程式碼程式庫
collaborate [k?'l?b?ret] 合作,協作,協同
git 是一個快速高效的、分布式的版本控制系統,完美適用於協作式軟體開發。
github 是與其他人協作做好的方式。
fork 分支
brunch 分支
三、向github中Managed 程式碼1.set up git
1.配置Username和Email
git config --global user.name "Your Name Here"
git config --global user.email "your_email@example.com"
2.配置git和gitbash可以正常顯示中文
http://blog.csdn.net/son_of_god/article/details/7341928
2.create a repo
首先在github上建立一個repo,如 MyTools,然後在git bash中操作
mkdir MyTools
cd MyTools
git init
touch README
--edit README file
git add README
git commit –m 'the first commit for git'
git remote add origin https://github.com/FrankFan/MyTools.git
git push origin master
說明:
touch和cat的區別
cat 一般是用來查看文字檔內容
touch可以建立一個空檔案,可以修改檔案的建立時間
update 2013-05-17
1.如果要刪除一個檔案,使用
git remove READ
刪除之後再git add <file>則不會在索引中刪除這個檔案,必須通過使用-a選項的命令:
git commit -a -m 'now file READ is removed'
2. git clone
把github上的原始碼庫拷貝到本地:
git clone https://github.com/FrankFan/DatabasePicExporter