配置git
全域性配置
git config --global user.name "your name"
git config --global user.email "your email"
推送到github平台
cd d:\github //選擇工作目錄,即專案所在目錄
//沒有專案時
git init
touch readme.md
git add readme.md
git commit -m "hello"
git remote add origin [email protected]:yourname/gittest.git
//youname為你的使用者名稱,test.git為在github建立好了的倉庫
git push -u origin master //提交到倉庫
//已有git專案時
cd git專案目錄
git remote add origin [email protected]:yourname/gittest.git
git push -u origin master
從github clone專案
cd //選擇存放目錄r
git clone 為github上的倉庫
整個過程**在github上建立新的倉庫時有詳細提示
MySQL配置學習筆記
1 mysql的特點 1 網路訪問 2 io讀寫頻繁 2 mysql基本配置 bind address 10.6.20.1 port 3306 character set server utf8 max connect errors 1000000 max connections 500 datad...
ZEND FRAMEWORK學習筆記 一 配置
剛剛學習zendframework,先說一下配置吧,我也是參照網上的教程就是phpeye 上的經典教程 配置zend首先要開啟apache的rewrite模組 loadmodule rewrite module modules mod rewrite.so 剛才我居然忘開啟了,寒乙個!然後在publ...
Linux網路配置學習筆記
ect hosts配置主機名 網域名稱 和ip位址的對應 etc sysconfig network配置主機名和閘道器 etc sysconfig network scripts ifcfg eth0eth0網絡卡配置檔案,eth1則檔名為ifcfg eth1 etc resolv.conf配置dn...