查看远端:git remote
    添加远端:git remote add [remote_xx] [remote address]
    移除远端:git remote remove [remote_xx]
    
    拉取远端:    git pull [remote_xx]
    创建分支:    git checkout -b local_branch [remote_xx]/<on_branch>
    远程分支关联:git branch --set-upstream-to=[remote_xx]/<on_branch> local_branch
    
    推送某个本地分支到远端分支: git push [remote_xx] local_branch:online_branch
    推送所有分支: git push [remote_xx] --all
    推送所有tags: git push [remote_xx] --tags

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐