标签:云上 指定 远程操作 sys git diff 日志 操作 工作 mit
常用操作
1、 git status 查看仓库状态
2、 git add 文件名 把文件添加到仓库
3、 git commit -m 把文件提交到仓库 -m后跟说明
4、 git add -A 提交当前目录下多个文件
5、 git rm 文件名 删除版本库文件
6、 git rm --cached 文件名 删除暂存区文件,工作区文件还在
7、 git remote -v 查看详细地址
8、 git diff 文件名 查看修改的内容
9、 git log --pretty=oneline 查看日志
10、git reset --hard 版本号 穿梭版本
11、git config --system --list 查看系统config
12、git config --global --list 查看当前用户(global)配置
13、git config --global user.name ‘‘ 查看当前用户名字
14、git config --global user.email ‘‘ 查看当前用户邮箱
15、git config --global user.name ‘‘ "xxxx" 修改当前用户名字
15、git config --global user.email ‘‘ "xxxx@.xxxx" 修改当前用户邮箱
分支操作
1、git branch 查看分支
2、git branch 名字 创建分支
3、git checkout 名字 切换分支
4、git merge 名字 合并分支(切换到主干上合并分支)
5、git branch -d <name> 删除分支
6、创建+切换分支:git checkout -b <name>或者git switch -c <name>
远程操作
1、git remote 查看远程仓库
2、git remote -v 查看仓库地址
3、git remote remove <远程库名> 删除远程仓库
4、git remote rename <旧名称> <新名称> 修改远程仓库名称
5、git pull origin master 拉代码
6、git remote rm 远程库名 删除指定的远程库
注:想要提交到指定的码云上,不管是在主干或者是分支上,都需要先拉一下,然后再提交,拉谁就提交谁
标签:云上 指定 远程操作 sys git diff 日志 操作 工作 mit
原文地址:https://www.cnblogs.com/sgzn/p/12146929.html