編程小知識【git-0003】git常用操作命令-其它常用命令
初始化git倉庫
git init
關聯遠程倉庫
git remote add <name> <git-repo-url>
# 例如 git remote add origin https://github.com/xxxxxx
關聯多個遠程倉庫
git remote add <name> <another-git-repo-url>
# 例如 git remote add coding https://coding.net/xxxxxx
遠程倉庫拉代碼到本地
git clone <git-repo-url>
把別人倉庫的地址改為自己的
$ git remote set-url origin <your-git-url>
新建分支并切換
git checkout -b <new-branch-name>
# 例如 git checkout -b dev
# 如果僅新建,不切換,則去掉參數 -b
查看當前有哪些分支
git branch -a
切換到現有的分支
git checkout master
合并分支
git merge <branch-name>
# 例如 git merge dev
本地master分支推送到遠程倉庫
git pull origin <branch-name>
# 之前如果push時使用過-u,那么就可以省略為git pull
git配置
查看當前配置
git config --list
配置全局用戶名
git config --global user.name "<name>"
配置全局郵箱
git config --global user.email "<email address>"