赞
踩
# 引号内填一个名字
git config --global user.name "用户名称"
# 引号内填一个邮箱
git config --global user.email "自己的邮箱"
# 查看全局配置
git config --global --list
# 查看局部配置
git config --local --list
git init
使用 git init 命令,初始化一个git本地仓库,此时会在本地创建一个 .git 的文件夹
git remote add origin https://****.git
使用git remote add origin https://.git ,添加(关联)远程仓库到本地
git add .
使用 git add . ,.表示添加所有文件到缓存区,或者git add 文件名
git commit -m “新添加的文件内容描述”
git push -u origin --all
执行 git push origin master ,提交推送代码
git push <remote_name> <branch_name>
git pull <remote_name> <branch_name>
git add <file>
git commit -m "commit message"
# 切换分支
git checkout <branch_name>
# 创建新的分支
git branch <branch_name>
# 合并一个分支到当前分支
git merge <branch_name>
# 撤销对某个文件的更改
git checkout -- <file>
# 撤销某个提交
git revert <commit_id>
# 修改某个提交的信息
git commit --amend
# 删除某个提交
git rebase -i <commit_id>
ssh git@github.com
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。