1. 程式人生 > >GIT的使用流程

GIT的使用流程

hello 開發 hub ssh ons con 切換 gin 輸入

Git 使用

git --version

ssh公鑰 生產公鑰 github設置ssh公鑰

  • 公鑰在github個人中心裏設置,有個ssh點進去就是,怎麽生成公鑰百度很多幾句代碼就解決

    git clone sshAddress

    git status

    git add . 重復提交

    git commit -m ‘描述‘

    git push

    • 新用戶這時提交會叫你輸入全局的user.name 和email 你寫你自己github賬號即可

創建分支 index-swiper (這部分是基於模塊化開發和大型項目或者版本叠代很多的應用才需要,小應用沒必要)

拉取線上分支 git pull

git checkout index-swiper

查看分支 git status

切換到master分支 git checkout master

合並index-swiper到master分支 git merge origin/index-swiper

合並完繼續git push 推到線上

console.log(‘HELLO WORLD‘)

GIT的使用流程