Git基本命令

git全局设置
git config --global user.name "xxxxxx"
git config --global user.email "xxxxxx"
创建 git 仓库
mkdir custom
cd custom
git init 
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/xxxxx/custom.git
git push -u origin "master"
已有仓库
cd custom
git remote add origin https://gitee.com/xxxxx/custom.git
git push -u origin "master"
初始化一个新的Git仓库
git init
克隆(Clone)一个远程仓库到本地
git clone <repository_url>
添加文件到暂存区(Stage)
git add <file1> <file2> ...
提交文件到本地仓库
git commit -m "Commit message"
查看当前仓库的状态
git status
查看提交历史记录
git log
创建一个新的分支
git branch <branch_name>
切换到指定分支
git checkout <branch_name>
创建并切换到一个新的分支
git checkout -b <branch_name>
合并指定分支到当前分支
git merge <branch_name>
拉取(Pull)远程仓库的更新
git pull
推送(Push)本地提交到远程仓库
git push
查看远程仓库信息
git remote -v
posted @ 2023-05-18 14:37  xingduo  阅读(13)  评论(0编辑  收藏  举报