1. 程式人生 > >git 常見命令

git 常見命令

常見 內容 https comm 拉取 賬號 global http tps

windows + R

cd ......

設置賬號

git config --global user.name "名稱"

git config --global user.email "郵箱"

初始化版本庫

git init

提交暫存

git add -A

提交修改內容

git commit -m "first commit”

指定雲端的項目地址

git remote add origin https://gitee.com/項目地址/項目名稱.git

拉取雲端文件

git pull origin master --allow-unrelated-histories

推送同步到遠端

git push -u origin master

git 常見命令