初识Git


安装git后,配置基本信息

git config --global user.name 'PerthCharles'  
git config --global user.email 'zhongbincharles@gmail.com'  
git config --global -l //查看全局配置信息

从github上将远端仓库clone至本地

git clone https://github.com/PerthCharles/perthcharles.github.com.git  

Read More