开源项目托管GitHub简单使用
生活随笔
收集整理的這篇文章主要介紹了
开源项目托管GitHub简单使用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1:https://github.com/
注冊賬戶,并創建項目
2:安裝git gui
3:運行Git Bash
Welcome to Git (version 1.9.0-preview20140217)Run 'git help git' to display the help index. Run 'git help <command>' to display help for specific commands.redmine@REDMINE-PC ~4:同步項目 redmine@REDMINE-PC ~ $ git clone https://github.com/sohudo/AutoCHM.git Cloning into 'AutoCHM'... remote: Counting objects: 3, done. remote: Compressing objects: 100% (2/2), done. remote: Total 3 (delta 0), reused 0 (delta 0) Unpacking objects: 100% (3/3), done. Checking connectivity... done.
5:提交更新
?cd AutoCHM
進入項目目錄
git add .
將改動和新增的文件添加到版本管理器
git ?commit -m "運行程序"
提交到本地的版本控制庫里,并加上本次提交的說明
git push -u origin master
將你本地的倉庫提交到你的github賬號里,
然后輸入你的github的賬號和密碼
總結
以上是生活随笔為你收集整理的开源项目托管GitHub简单使用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql中间件研究(Atlas,cob
- 下一篇: mahout贝叶斯分类器测试样例