github 通常操做

添加已有項目到githubgit

新建repository,能夠在github網站上直接新建或者使用windows github工具。github

進入github repository 項目windows

 

在github windows工具中使用git Bash打開項目,使用cd命令進入已有項目根目錄下工具

 

touch README.md //新建說明文件
git init //在當前項目目錄中生成本地git管理,並創建一個隱藏.git目錄
git add . //添加當前目錄中的全部文件到索引
git commit -m "first commit" //提交到本地源碼庫,並附加提交註釋
git remote add origin https://github.com/chape/test.git //添加到遠程項目,別名爲origin
git push -u origin master //把本地源碼庫push到github 別名爲origin的遠程項目中,確認提交

提交完成,查看repository。網站

 

更新代碼code

cd /d/TVCloud
git add .
git commit -m "update test" //檢測文件改動並附加提交註釋
git push -u origin master //提交修改到項目主線

 

github經常使用命令索引

git push origin master //把本地源碼庫push到Github上
git pull origin master //從Github上pull到本地源碼庫
git config --list //查看配置信息
git status //查看項目狀態信息
git branch //查看項目分支
git checkout -b host//添加一個名爲host的分支
git checkout master //切換到主幹
git merge host //合併分支host到主幹
git branch -d host //刪除分支host
相關文章
相關標籤/搜索